* [PATCH i-g-t v6 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa
@ 2024-12-03 3:42 Santhosh Reddy Guddati
2024-12-03 3:42 ` [PATCH i-g-t v6 1/1] tests/intel/kms_joiner: switch modeset between uj and bj Santhosh Reddy Guddati
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: Santhosh Reddy Guddati @ 2024-12-03 3:42 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, swati2.sharma, Santhosh Reddy Guddati
Add a subtest to validate switching from ultra joiner to big joiner
and vice-versa.
Santhosh Reddy Guddati (1):
tests/intel/kms_joiner: switch modeset between ultra and big joiner
tests/intel/kms_joiner.c | 115 +++++++++++++++++++++++++++++++++++++++
1 file changed, 115 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH i-g-t v6 1/1] tests/intel/kms_joiner: switch modeset between uj and bj 2024-12-03 3:42 [PATCH i-g-t v6 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati @ 2024-12-03 3:42 ` Santhosh Reddy Guddati 2024-12-03 3:42 ` [PATCH i-g-t v6 1/1] tests/intel/kms_joiner: switch modeset between ultra and big joiner Santhosh Reddy Guddati ` (4 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Santhosh Reddy Guddati @ 2024-12-03 3:42 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, swati2.sharma, Santhosh Reddy Guddati Add a subtest to validate switching from ultra joiner to big joiner and vice-versa. v2: Add new subtests for switching without force joiner (Karthik). v3: Start with uj to bj switch, if not available switch to force mode. v4: Check for uj, bj support before starting dynamic tests (karthik) call reset_connectors after forcing to uj. v5: Add a separate function to switch modes and execute test for each connected supported output (karthik). v6: Add force_joiner and dsc supported checks, remove redundant checks while setting modes (karthik). Remove display_reset during switch-modeset, intentionally force big joiner and then switch to ultra joiner. Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> --- tests/intel/kms_joiner.c | 115 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c index 9a353ee1b..97ffecf60 100644 --- a/tests/intel/kms_joiner.c +++ b/tests/intel/kms_joiner.c @@ -71,6 +71,9 @@ * SUBTEST: invalid-modeset-force-ultra-joiner * Description: Verify if the modeset on the other pipes are rejected when * the pipe A is active with force ultra joiner modeset. + * + * SUBTEST: switch-modeset-ultra-joiner-big-joiner + * Description: Verify switching between ultra joiner and big joiner modeset. */ IGT_TEST_DESCRIPTION("Test joiner / force joiner"); @@ -161,6 +164,103 @@ static enum pipe setup_pipe(data_t *data, igt_output_t *output, enum pipe pipe, return master_pipe; } +static void set_joiner_mode(data_t *data, igt_output_t *output, drmModeModeInfo *mode) +{ + igt_plane_t *primary; + igt_fb_t fb; + + igt_info("Committing joiner mode for output %s with mode %dx%d@%d\n", + output->name, mode->hdisplay, mode->vdisplay, mode->vrefresh); + + igt_output_set_pipe(output, PIPE_A); + igt_output_override_mode(output, mode); + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + igt_create_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888, + DRM_FORMAT_MOD_LINEAR, &fb); + igt_plane_set_fb(primary, &fb); + igt_display_commit2(&data->display, COMMIT_ATOMIC); + + igt_display_reset(&data->display); + igt_reset_connectors(); + igt_plane_set_fb(primary, NULL); + igt_remove_fb(data->drm_fd, &fb); +} + +static void switch_modeset_ultra_joiner_big_joiner(data_t *data, igt_output_t *output) +{ + drmModeModeInfo bj_mode; + drmModeModeInfo uj_mode; + int status; + bool ultrajoiner_found; + enum pipe pipe; + bool force_joiner_supported; + + drmModeConnector *connector = output->config.connector; + + ultrajoiner_found = ultrajoiner_mode_found(data->drm_fd, connector, max_dotclock, &uj_mode); + force_joiner_supported = igt_has_force_joiner_debugfs(data->drm_fd, output->name) && + is_dsc_supported_by_sink(data->drm_fd, output); + + if (ultrajoiner_found) { + igt_output_override_mode(output, &uj_mode); + } else if (force_joiner_supported) { + status = kmstest_force_connector_joiner(data->drm_fd, output->config.connector, + JOINED_PIPES_ULTRA_JOINER); + igt_assert_f(status, "Failed to toggle force joiner\n"); + uj_mode = *igt_output_get_mode(output); + } else { + igt_info("No ultra joiner mode found on output %s\n", output->name); + return; + } + + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) { + set_joiner_mode(data, output, &uj_mode); + /* Switch to big joiner mode */ + if (bigjoiner_mode_found(data->drm_fd, output->config.connector, + max_dotclock, &bj_mode)) { + igt_output_override_mode(output, &bj_mode); + } else { + status = kmstest_force_connector_joiner(data->drm_fd, + output->config.connector, + JOINED_PIPES_BIG_JOINER); + igt_assert_f(status, "Failed to toggle force joiner\n"); + bj_mode = *igt_output_get_mode(output); + } + + set_joiner_mode(data, output, &bj_mode); + + /* Switch back to ultra joiner*/ + if (ultrajoiner_found) { + igt_output_override_mode(output, &uj_mode); + } else { + status = kmstest_force_connector_joiner(data->drm_fd, + output->config.connector, + JOINED_PIPES_ULTRA_JOINER); + igt_assert_f(status, "Failed to toggle force joiner\n"); + } + + set_joiner_mode(data, output, &uj_mode); + + /* Intentionally force to big joiner and then switch */ + status = kmstest_force_connector_joiner(data->drm_fd, output->config.connector, + JOINED_PIPES_BIG_JOINER); + igt_assert_f(status, "Failed to toggle force joiner\n"); + bj_mode = *igt_output_get_mode(output); + set_joiner_mode(data, output, &bj_mode); + + /* Switch back to ultra joiner */ + if (ultrajoiner_found) { + igt_output_override_mode(output, &uj_mode); + } else { + status = kmstest_force_connector_joiner(data->drm_fd, + output->config.connector, + JOINED_PIPES_ULTRA_JOINER); + igt_assert_f(status, "Failed to toggle force joiner\n"); + } + set_joiner_mode(data, output, &uj_mode); + } +} + static void test_single_joiner(data_t *data, int output_count, bool force_joiner) { int i; @@ -592,6 +692,21 @@ igt_main } } + igt_describe("Verify modeset switch between ultra joiner and big joiner"); + igt_subtest_with_dynamic("switch-modeset-ultra-joiner-big-joiner") { + igt_require_f(ultra_joiner_supported, + "Ultra joiner not supported on this platform\n"); + igt_require_f(data.ultra_joiner_output_count > 0 || + data.non_ultra_joiner_output_count > 0, + "No ultra joiner or force ultra joiner output found\n"); + igt_require_f(data.n_pipes > 3, + "Minimum 4 pipes required\n"); + + for_each_connected_output(&data.display, output) { + switch_modeset_ultra_joiner_big_joiner(&data, output); + } + } + igt_subtest_with_dynamic("invalid-modeset-force-ultra-joiner") { igt_require_f(ultra_joiner_supported, "Ultra joiner not supported on this platform\n"); -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH i-g-t v6 1/1] tests/intel/kms_joiner: switch modeset between ultra and big joiner 2024-12-03 3:42 [PATCH i-g-t v6 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati 2024-12-03 3:42 ` [PATCH i-g-t v6 1/1] tests/intel/kms_joiner: switch modeset between uj and bj Santhosh Reddy Guddati @ 2024-12-03 3:42 ` Santhosh Reddy Guddati 2024-12-12 6:12 ` Karthik B S 2024-12-03 4:25 ` ✓ Xe.CI.BAT: success for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev6) Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 8+ messages in thread From: Santhosh Reddy Guddati @ 2024-12-03 3:42 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, swati2.sharma, Santhosh Reddy Guddati Add a subtest to validate switching from ultra joiner to big joiner and vice-versa. v2: Add new subtests for switching without force joiner (Karthik). v3: Start with uj to bj switch, if not available switch to force mode. v4: Check for uj, bj support before starting dynamic tests (karthik) call reset_connectors after forcing to uj. v5: Add a separate function to switch modes and execute test for each connected supported output (karthik). v6: Add force_joiner and dsc supported checks, remove redundant checks while setting modes (karthik). Remove display_reset during switch-modeset, intentionally force big joiner and then switch to ultra joiner. Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> --- tests/intel/kms_joiner.c | 115 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c index 9a353ee1b..97ffecf60 100644 --- a/tests/intel/kms_joiner.c +++ b/tests/intel/kms_joiner.c @@ -71,6 +71,9 @@ * SUBTEST: invalid-modeset-force-ultra-joiner * Description: Verify if the modeset on the other pipes are rejected when * the pipe A is active with force ultra joiner modeset. + * + * SUBTEST: switch-modeset-ultra-joiner-big-joiner + * Description: Verify switching between ultra joiner and big joiner modeset. */ IGT_TEST_DESCRIPTION("Test joiner / force joiner"); @@ -161,6 +164,103 @@ static enum pipe setup_pipe(data_t *data, igt_output_t *output, enum pipe pipe, return master_pipe; } +static void set_joiner_mode(data_t *data, igt_output_t *output, drmModeModeInfo *mode) +{ + igt_plane_t *primary; + igt_fb_t fb; + + igt_info("Committing joiner mode for output %s with mode %dx%d@%d\n", + output->name, mode->hdisplay, mode->vdisplay, mode->vrefresh); + + igt_output_set_pipe(output, PIPE_A); + igt_output_override_mode(output, mode); + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + igt_create_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888, + DRM_FORMAT_MOD_LINEAR, &fb); + igt_plane_set_fb(primary, &fb); + igt_display_commit2(&data->display, COMMIT_ATOMIC); + + igt_display_reset(&data->display); + igt_reset_connectors(); + igt_plane_set_fb(primary, NULL); + igt_remove_fb(data->drm_fd, &fb); +} + +static void switch_modeset_ultra_joiner_big_joiner(data_t *data, igt_output_t *output) +{ + drmModeModeInfo bj_mode; + drmModeModeInfo uj_mode; + int status; + bool ultrajoiner_found; + enum pipe pipe; + bool force_joiner_supported; + + drmModeConnector *connector = output->config.connector; + + ultrajoiner_found = ultrajoiner_mode_found(data->drm_fd, connector, max_dotclock, &uj_mode); + force_joiner_supported = igt_has_force_joiner_debugfs(data->drm_fd, output->name) && + is_dsc_supported_by_sink(data->drm_fd, output); + + if (ultrajoiner_found) { + igt_output_override_mode(output, &uj_mode); + } else if (force_joiner_supported) { + status = kmstest_force_connector_joiner(data->drm_fd, output->config.connector, + JOINED_PIPES_ULTRA_JOINER); + igt_assert_f(status, "Failed to toggle force joiner\n"); + uj_mode = *igt_output_get_mode(output); + } else { + igt_info("No ultra joiner mode found on output %s\n", output->name); + return; + } + + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) { + set_joiner_mode(data, output, &uj_mode); + /* Switch to big joiner mode */ + if (bigjoiner_mode_found(data->drm_fd, output->config.connector, + max_dotclock, &bj_mode)) { + igt_output_override_mode(output, &bj_mode); + } else { + status = kmstest_force_connector_joiner(data->drm_fd, + output->config.connector, + JOINED_PIPES_BIG_JOINER); + igt_assert_f(status, "Failed to toggle force joiner\n"); + bj_mode = *igt_output_get_mode(output); + } + + set_joiner_mode(data, output, &bj_mode); + + /* Switch back to ultra joiner*/ + if (ultrajoiner_found) { + igt_output_override_mode(output, &uj_mode); + } else { + status = kmstest_force_connector_joiner(data->drm_fd, + output->config.connector, + JOINED_PIPES_ULTRA_JOINER); + igt_assert_f(status, "Failed to toggle force joiner\n"); + } + + set_joiner_mode(data, output, &uj_mode); + + /* Intentionally force to big joiner and then switch */ + status = kmstest_force_connector_joiner(data->drm_fd, output->config.connector, + JOINED_PIPES_BIG_JOINER); + igt_assert_f(status, "Failed to toggle force joiner\n"); + bj_mode = *igt_output_get_mode(output); + set_joiner_mode(data, output, &bj_mode); + + /* Switch back to ultra joiner */ + if (ultrajoiner_found) { + igt_output_override_mode(output, &uj_mode); + } else { + status = kmstest_force_connector_joiner(data->drm_fd, + output->config.connector, + JOINED_PIPES_ULTRA_JOINER); + igt_assert_f(status, "Failed to toggle force joiner\n"); + } + set_joiner_mode(data, output, &uj_mode); + } +} + static void test_single_joiner(data_t *data, int output_count, bool force_joiner) { int i; @@ -592,6 +692,21 @@ igt_main } } + igt_describe("Verify modeset switch between ultra joiner and big joiner"); + igt_subtest_with_dynamic("switch-modeset-ultra-joiner-big-joiner") { + igt_require_f(ultra_joiner_supported, + "Ultra joiner not supported on this platform\n"); + igt_require_f(data.ultra_joiner_output_count > 0 || + data.non_ultra_joiner_output_count > 0, + "No ultra joiner or force ultra joiner output found\n"); + igt_require_f(data.n_pipes > 3, + "Minimum 4 pipes required\n"); + + for_each_connected_output(&data.display, output) { + switch_modeset_ultra_joiner_big_joiner(&data, output); + } + } + igt_subtest_with_dynamic("invalid-modeset-force-ultra-joiner") { igt_require_f(ultra_joiner_supported, "Ultra joiner not supported on this platform\n"); -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v6 1/1] tests/intel/kms_joiner: switch modeset between ultra and big joiner 2024-12-03 3:42 ` [PATCH i-g-t v6 1/1] tests/intel/kms_joiner: switch modeset between ultra and big joiner Santhosh Reddy Guddati @ 2024-12-12 6:12 ` Karthik B S 0 siblings, 0 replies; 8+ messages in thread From: Karthik B S @ 2024-12-12 6:12 UTC (permalink / raw) To: Santhosh Reddy Guddati, igt-dev; +Cc: swati2.sharma Hi Santhosh, On 12/3/2024 9:12 AM, Santhosh Reddy Guddati wrote: > Add a subtest to validate switching from ultra joiner to big joiner > and vice-versa. > > v2: Add new subtests for switching without force joiner (Karthik). > v3: Start with uj to bj switch, if not available switch to force mode. > v4: Check for uj, bj support before starting dynamic tests (karthik) > call reset_connectors after forcing to uj. > v5: Add a separate function to switch modes and execute test for each > connected supported output (karthik). > v6: Add force_joiner and dsc supported checks, remove redundant checks > while setting modes (karthik). > Remove display_reset during switch-modeset, intentionally force > big joiner and then switch to ultra joiner. > > Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > --- > tests/intel/kms_joiner.c | 115 +++++++++++++++++++++++++++++++++++++++ > 1 file changed, 115 insertions(+) > > diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c > index 9a353ee1b..97ffecf60 100644 > --- a/tests/intel/kms_joiner.c > +++ b/tests/intel/kms_joiner.c > @@ -71,6 +71,9 @@ > * SUBTEST: invalid-modeset-force-ultra-joiner > * Description: Verify if the modeset on the other pipes are rejected when > * the pipe A is active with force ultra joiner modeset. > + * > + * SUBTEST: switch-modeset-ultra-joiner-big-joiner > + * Description: Verify switching between ultra joiner and big joiner modeset. > */ > IGT_TEST_DESCRIPTION("Test joiner / force joiner"); > > @@ -161,6 +164,103 @@ static enum pipe setup_pipe(data_t *data, igt_output_t *output, enum pipe pipe, > return master_pipe; > } > > +static void set_joiner_mode(data_t *data, igt_output_t *output, drmModeModeInfo *mode) > +{ > + igt_plane_t *primary; > + igt_fb_t fb; > + > + igt_info("Committing joiner mode for output %s with mode %dx%d@%d\n", > + output->name, mode->hdisplay, mode->vdisplay, mode->vrefresh); > + > + igt_output_set_pipe(output, PIPE_A); > + igt_output_override_mode(output, mode); > + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > + igt_create_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888, > + DRM_FORMAT_MOD_LINEAR, &fb); > + igt_plane_set_fb(primary, &fb); > + igt_display_commit2(&data->display, COMMIT_ATOMIC); > + > + igt_display_reset(&data->display); > + igt_reset_connectors(); > + igt_plane_set_fb(primary, NULL); > + igt_remove_fb(data->drm_fd, &fb); > +} > + > +static void switch_modeset_ultra_joiner_big_joiner(data_t *data, igt_output_t *output) > +{ > + drmModeModeInfo bj_mode; > + drmModeModeInfo uj_mode; > + int status; > + bool ultrajoiner_found; > + enum pipe pipe; > + bool force_joiner_supported; > + > + drmModeConnector *connector = output->config.connector; > + > + ultrajoiner_found = ultrajoiner_mode_found(data->drm_fd, connector, max_dotclock, &uj_mode); > + force_joiner_supported = igt_has_force_joiner_debugfs(data->drm_fd, output->name) && > + is_dsc_supported_by_sink(data->drm_fd, output); > + > + if (ultrajoiner_found) { > + igt_output_override_mode(output, &uj_mode); > + } else if (force_joiner_supported) { > + status = kmstest_force_connector_joiner(data->drm_fd, output->config.connector, > + JOINED_PIPES_ULTRA_JOINER); > + igt_assert_f(status, "Failed to toggle force joiner\n"); > + uj_mode = *igt_output_get_mode(output); > + } else { > + igt_info("No ultra joiner mode found on output %s\n", output->name); > + return; > + } > + > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) { > + set_joiner_mode(data, output, &uj_mode); > + /* Switch to big joiner mode */ > + if (bigjoiner_mode_found(data->drm_fd, output->config.connector, > + max_dotclock, &bj_mode)) { > + igt_output_override_mode(output, &bj_mode); > + } else { > + status = kmstest_force_connector_joiner(data->drm_fd, > + output->config.connector, > + JOINED_PIPES_BIG_JOINER); > + igt_assert_f(status, "Failed to toggle force joiner\n"); > + bj_mode = *igt_output_get_mode(output); > + } > + > + set_joiner_mode(data, output, &bj_mode); > + > + /* Switch back to ultra joiner*/ > + if (ultrajoiner_found) { > + igt_output_override_mode(output, &uj_mode); > + } else { > + status = kmstest_force_connector_joiner(data->drm_fd, > + output->config.connector, > + JOINED_PIPES_ULTRA_JOINER); > + igt_assert_f(status, "Failed to toggle force joiner\n"); > + } > + > + set_joiner_mode(data, output, &uj_mode); > + > + /* Intentionally force to big joiner and then switch */ Let us remove this below switch as this becomes redundant and add a check in 'bigjoiner_mode_found' to ensure that this function returns bj only mode and not uj mode. Other than this, the patch LGTM. Thanks, Karthik.B.S > + status = kmstest_force_connector_joiner(data->drm_fd, output->config.connector, > + JOINED_PIPES_BIG_JOINER); > + igt_assert_f(status, "Failed to toggle force joiner\n"); > + bj_mode = *igt_output_get_mode(output); > + set_joiner_mode(data, output, &bj_mode); > + > + /* Switch back to ultra joiner */ > + if (ultrajoiner_found) { > + igt_output_override_mode(output, &uj_mode); > + } else { > + status = kmstest_force_connector_joiner(data->drm_fd, > + output->config.connector, > + JOINED_PIPES_ULTRA_JOINER); > + igt_assert_f(status, "Failed to toggle force joiner\n"); > + } > + set_joiner_mode(data, output, &uj_mode); > + } > +} > + > static void test_single_joiner(data_t *data, int output_count, bool force_joiner) > { > int i; > @@ -592,6 +692,21 @@ igt_main > } > } > > + igt_describe("Verify modeset switch between ultra joiner and big joiner"); > + igt_subtest_with_dynamic("switch-modeset-ultra-joiner-big-joiner") { > + igt_require_f(ultra_joiner_supported, > + "Ultra joiner not supported on this platform\n"); > + igt_require_f(data.ultra_joiner_output_count > 0 || > + data.non_ultra_joiner_output_count > 0, > + "No ultra joiner or force ultra joiner output found\n"); > + igt_require_f(data.n_pipes > 3, > + "Minimum 4 pipes required\n"); > + > + for_each_connected_output(&data.display, output) { > + switch_modeset_ultra_joiner_big_joiner(&data, output); > + } > + } > + > igt_subtest_with_dynamic("invalid-modeset-force-ultra-joiner") { > igt_require_f(ultra_joiner_supported, > "Ultra joiner not supported on this platform\n"); ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev6) 2024-12-03 3:42 [PATCH i-g-t v6 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati 2024-12-03 3:42 ` [PATCH i-g-t v6 1/1] tests/intel/kms_joiner: switch modeset between uj and bj Santhosh Reddy Guddati 2024-12-03 3:42 ` [PATCH i-g-t v6 1/1] tests/intel/kms_joiner: switch modeset between ultra and big joiner Santhosh Reddy Guddati @ 2024-12-03 4:25 ` Patchwork 2024-12-03 4:35 ` ✗ i915.CI.BAT: failure " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-12-03 4:25 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1098 bytes --] == Series Details == Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev6) URL : https://patchwork.freedesktop.org/series/138525/ State : success == Summary == CI Bug Log - changes from XEIGT_8134_BAT -> XEIGTPW_12230_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8134 -> IGTPW_12230 * Linux: xe-2306-83cfa47b496201ff05d4a369f6fe3f75665a2acf -> xe-2307-4de82d50b8de6a278c1483a7f76ae830c89d1824 IGTPW_12230: 12230 IGT_8134: 027fbf68a00630d7bb8ae200c620296e2bad971d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2306-83cfa47b496201ff05d4a369f6fe3f75665a2acf: 83cfa47b496201ff05d4a369f6fe3f75665a2acf xe-2307-4de82d50b8de6a278c1483a7f76ae830c89d1824: 4de82d50b8de6a278c1483a7f76ae830c89d1824 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/index.html [-- Attachment #2: Type: text/html, Size: 1657 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.BAT: failure for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev6) 2024-12-03 3:42 [PATCH i-g-t v6 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati ` (2 preceding siblings ...) 2024-12-03 4:25 ` ✓ Xe.CI.BAT: success for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev6) Patchwork @ 2024-12-03 4:35 ` Patchwork 2024-12-03 4:53 ` ✗ GitLab.Pipeline: warning " Patchwork 2024-12-03 5:15 ` ✗ Xe.CI.Full: failure " Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-12-03 4:35 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev == Series Details == Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev6) URL : https://patchwork.freedesktop.org/series/138525/ State : failure == Summary == CI Bug Log - changes from IGT_8134 -> IGTPW_12230 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12230 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12230, 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_12230/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_12230: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rpm@module-reload: - bat-mtlp-8: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8134/bat-mtlp-8/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12230/bat-mtlp-8/igt@i915_pm_rpm@module-reload.html * igt@kms_pipe_crc_basic@read-crc: - fi-cfl-8109u: [PASS][3] -> [DMESG-WARN][4] +2 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8134/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12230/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html Known issues ------------ Here are the changes found in IGTPW_12230 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@module-reload: - bat-rpls-4: [PASS][5] -> [FAIL][6] ([i915#12903]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8134/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12230/bat-rpls-4/igt@i915_pm_rpm@module-reload.html #### Possible fixes #### * igt@dmabuf@all-tests@dma_fence_chain: - fi-bsw-nick: [INCOMPLETE][7] ([i915#12904]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8134/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12230/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html * igt@i915_pm_rpm@module-reload: - fi-tgl-1115g4: [FAIL][9] ([i915#12903]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8134/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12230/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-adlp-9: [FAIL][11] ([i915#11989]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8134/bat-adlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12230/bat-adlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@basic-flip-vs-wf_vblank@b-dp1: - bat-adlp-9: [FAIL][13] -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8134/bat-adlp-9/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp1.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12230/bat-adlp-9/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp1.html [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8134 -> IGTPW_12230 * Linux: CI_DRM_15774 -> CI_DRM_15775 CI-20190529: 20190529 CI_DRM_15774: 83cfa47b496201ff05d4a369f6fe3f75665a2acf @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15775: 4de82d50b8de6a278c1483a7f76ae830c89d1824 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12230: 12230 IGT_8134: 027fbf68a00630d7bb8ae200c620296e2bad971d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12230/index.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ GitLab.Pipeline: warning for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev6) 2024-12-03 3:42 [PATCH i-g-t v6 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati ` (3 preceding siblings ...) 2024-12-03 4:35 ` ✗ i915.CI.BAT: failure " Patchwork @ 2024-12-03 4:53 ` Patchwork 2024-12-03 5:15 ` ✗ Xe.CI.Full: failure " Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-12-03 4:53 UTC (permalink / raw) To: Reddy Guddati, Santhosh; +Cc: igt-dev == Series Details == Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev6) URL : https://patchwork.freedesktop.org/series/138525/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1322042 for the overview. build:tests-debian-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/67588058): Getting source from Git repository $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Initialized empty Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Created fresh repository. Checking out ddcafbd1 as detached HEAD (ref is intel/IGTPW_12230)... Skipping Git submodules setup section_end:1733201190:get_sources section_start:1733201190:step_script Executing "step_script" stage of the job script Using docker image sha256:ca01fc804bb92e5df42a202dd7e0470610c6711c66a808525defcb8bbb774078 for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian:commit-ddcafbd1b428bec2bc9872744aa350095ce1fadf with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian@sha256:b9fe73c6ff5d68f5692fd18b9076735679c8bfa7ed393e752dd4927a2cdf9874 ... section_end:1733201207:step_script section_start:1733201207:cleanup_file_variables Cleaning up project directory and file based variables section_end:1733201208:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:ca01fc804bb92e5df42a202dd7e0470610c6711c66a808525defcb8bbb774078: image not known (docker.go:650:0s) == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1322042 ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev6) 2024-12-03 3:42 [PATCH i-g-t v6 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati ` (4 preceding siblings ...) 2024-12-03 4:53 ` ✗ GitLab.Pipeline: warning " Patchwork @ 2024-12-03 5:15 ` Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-12-03 5:15 UTC (permalink / raw) To: Reddy Guddati, Santhosh; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 54967 bytes --] == Series Details == Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev6) URL : https://patchwork.freedesktop.org/series/138525/ State : failure == Summary == CI Bug Log - changes from XEIGT_8134_full -> XEIGTPW_12230_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12230_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12230_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_12230_full: ### IGT changes ### #### Possible regressions #### * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner (NEW): - shard-bmg: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: NOTRUN -> [ABORT][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html New tests --------- New tests have been introduced between XEIGT_8134_full and XEIGTPW_12230_full: ### New IGT tests (1) ### * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12230_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [PASS][3] -> [DMESG-FAIL][4] ([Intel XE#3468]) +8 other tests dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@kms_big_fb@linear-16bpp-rotate-180.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_big_fb@linear-16bpp-rotate-180.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-1/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +12 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2328]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2314] / [Intel XE#2894]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#367]) +4 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +16 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#3432]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-negative: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2325]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2252]) +15 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_content_protection@dp-mst-type-0: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2390]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-bmg: NOTRUN -> [FAIL][16] ([Intel XE#1178]) +3 other tests fail [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2341]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent: - shard-bmg: NOTRUN -> [FAIL][18] ([Intel XE#1188]) +1 other test fail [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2320]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2321]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2286]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2291]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][23] ([Intel XE#877]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2291]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-bmg: NOTRUN -> [FAIL][26] ([Intel XE#2141]) +1 other test fail [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#1508]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#3070]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-with-bpc: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2244]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@kms_dsc@dsc-with-bpc.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: NOTRUN -> [FAIL][30] ([Intel XE#1695]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_fbcon_fbt@fbc.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#1138]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-5/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2374]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-dpms: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2316]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][34] ([Intel XE#3321]) +3 other tests fail [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][35] ([Intel XE#3640]) +1 other test fail [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-WARN][36] ([Intel XE#3468]) +22 other tests dmesg-warn [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][37] ([Intel XE#2882]) +2 other tests fail [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-panning: - shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#2316]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-1/igt@kms_flip@2x-flip-vs-panning.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-bmg: [PASS][40] -> [INCOMPLETE][41] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2293] / [Intel XE#2380]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2293]) +7 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2311]) +32 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#2333]) +15 other tests fail [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2312]) +14 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2350]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2313]) +32 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2927]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#3012]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2934]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2493]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2763]) +14 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a: - shard-bmg: [PASS][55] -> [DMESG-WARN][56] ([Intel XE#1727]) +1 other test dmesg-warn [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a: - shard-bmg: [PASS][57] -> [DMESG-WARN][58] ([Intel XE#2705] / [Intel XE#3468]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html * igt@kms_pm_backlight@basic-brightness: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#870]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2392]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@basic-rte: - shard-bmg: NOTRUN -> [DMESG-WARN][61] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_pm_rpm@basic-rte.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#1489]) +9 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@psr2-no-drrs: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2234] / [Intel XE#2850]) +17 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-5/igt@kms_psr@psr2-no-drrs.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2330]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#3414]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2413]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#1435]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2426]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@query-busy@pipe-a-dp-2: - shard-bmg: NOTRUN -> [DMESG-FAIL][69] ([Intel XE#3468]) +3 other tests dmesg-fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-2/igt@kms_vblank@query-busy@pipe-a-dp-2.html * igt@kms_vrr@flip-dpms: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#1499]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-5/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2168]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-4/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#756]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@kms_writeback@writeback-pixel-formats.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2504]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-2/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug@vma-ufence: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2905]) +18 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-4/igt@xe_eudebug@vma-ufence.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: NOTRUN -> [INCOMPLETE][75] ([Intel XE#1473]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][76] -> [TIMEOUT][77] ([Intel XE#1473] / [Intel XE#2472]) +1 other test timeout [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2322]) +12 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-5/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [PASS][79] -> [DMESG-WARN][80] ([Intel XE#3467]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-bmg: [PASS][81] -> [DMESG-WARN][82] ([Intel XE#3343] / [Intel XE#3468]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: - shard-bmg: NOTRUN -> [DMESG-WARN][83] ([Intel XE#3467] / [Intel XE#3468]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html * igt@xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2459] / [Intel XE#2596]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-4/igt@xe_media_fill@media-fill.html * igt@xe_mmap@small-bar: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#586]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-4/igt@xe_mmap@small-bar.html * igt@xe_module_load@reload: - shard-bmg: NOTRUN -> [DMESG-WARN][86] ([Intel XE#3467]) +1 other test dmesg-warn [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@xe_module_load@reload.html * igt@xe_pat@pat-index-xelp: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2245]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@xe_pat@pat-index-xelp.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2284]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@s2idle-mocs: - shard-bmg: NOTRUN -> [ABORT][89] ([Intel XE#3468]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-5/igt@xe_pm@s2idle-mocs.html * igt@xe_pm@s2idle-vm-bind-prefetch: - shard-bmg: NOTRUN -> [ABORT][90] ([Intel XE#1616]) +1 other test abort [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-prefetch.html * igt@xe_pm@s2idle-vm-bind-userptr: - shard-bmg: NOTRUN -> [ABORT][91] ([Intel XE#1616] / [Intel XE#3468]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-userptr.html * igt@xe_pm@s3-vm-bind-userptr: - shard-bmg: [PASS][92] -> [DMESG-WARN][93] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@xe_pm@s3-vm-bind-userptr.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-2/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_pm@s4-exec-after: - shard-bmg: [PASS][94] -> [DMESG-WARN][95] ([Intel XE#1727] / [Intel XE#3468]) +5 other tests dmesg-warn [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-2/igt@xe_pm@s4-exec-after.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@xe_pm@s4-exec-after.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#944]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_sriov_flr@flr-each-isolation: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#3342]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][98] -> [DMESG-WARN][99] ([Intel XE#3468]) +46 other tests dmesg-warn [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-6/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Possible fixes #### * igt@core_hotunplug@hotreplug: - shard-bmg: [DMESG-WARN][100] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][101] +1 other test pass [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-2/igt@core_hotunplug@hotreplug.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@core_hotunplug@hotreplug.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-bmg: [FAIL][102] ([Intel XE#3557]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_big_fb@linear-addfb: - shard-bmg: [SKIP][104] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-2/igt@kms_big_fb@linear-addfb.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-1/igt@kms_big_fb@linear-addfb.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][106] -> [PASS][107] +2 other tests pass [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_color@ctm-0-75@pipe-b-hdmi-a-3: - shard-bmg: [DMESG-WARN][108] ([Intel XE#877]) -> [PASS][109] +1 other test pass [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-8/igt@kms_color@ctm-0-75@pipe-b-hdmi-a-3.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_color@ctm-0-75@pipe-b-hdmi-a-3.html * igt@kms_color@deep-color: - shard-bmg: [SKIP][110] ([Intel XE#3007]) -> [PASS][111] +3 other tests pass [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-2/igt@kms_color@deep-color.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_color@deep-color.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][112] ([Intel XE#2291]) -> [PASS][113] +3 other tests pass [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-bmg: [DMESG-WARN][114] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][115] +3 other tests pass [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-5/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [SKIP][116] ([Intel XE#2316]) -> [PASS][117] +2 other tests pass [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-expired-vblank: - shard-bmg: [FAIL][118] ([Intel XE#2882]) -> [PASS][119] +1 other test pass [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_getfb@getfb2-into-addfb2: - shard-bmg: [DMESG-WARN][120] ([Intel XE#1727]) -> [PASS][121] +1 other test pass [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-6/igt@kms_getfb@getfb2-into-addfb2.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-4/igt@kms_getfb@getfb2-into-addfb2.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [INCOMPLETE][122] ([Intel XE#1035] / [Intel XE#1727] / [Intel XE#3468]) -> [PASS][123] +1 other test pass [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-4/igt@kms_plane@plane-panning-bottom-right-suspend.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-bmg: [DMESG-FAIL][124] ([Intel XE#3468]) -> [PASS][125] +4 other tests pass [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling: - shard-bmg: [INCOMPLETE][126] ([Intel XE#1727] / [Intel XE#2566]) -> [PASS][127] +1 other test pass [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html * igt@kms_setmode@basic@pipe-a-dp-2-pipe-b-hdmi-a-3: - shard-bmg: [FAIL][128] ([Intel XE#3559]) -> [PASS][129] +1 other test pass [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@kms_setmode@basic@pipe-a-dp-2-pipe-b-hdmi-a-3.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_setmode@basic@pipe-a-dp-2-pipe-b-hdmi-a-3.html * igt@xe_drm_fdinfo@utilization-single-full-load-isolation: - shard-bmg: [DMESG-WARN][130] ([Intel XE#3468]) -> [PASS][131] +36 other tests pass [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: - shard-bmg: [DMESG-WARN][132] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html * igt@xe_intel_bb@intel-bb-blit-x: - shard-bmg: [SKIP][134] ([Intel XE#1130]) -> [PASS][135] +5 other tests pass [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-2/igt@xe_intel_bb@intel-bb-blit-x.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@xe_intel_bb@intel-bb-blit-x.html * igt@xe_module_load@reload-no-display: - shard-bmg: [DMESG-WARN][136] ([Intel XE#3467]) -> [PASS][137] +2 other tests pass [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@xe_module_load@reload-no-display.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@xe_module_load@reload-no-display.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-bmg: [DMESG-WARN][138] ([Intel XE#3468] / [Intel XE#569]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-6/igt@xe_pm@s3-vm-bind-unbind-all.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pm_residency@cpg-basic: - shard-bmg: [DMESG-FAIL][140] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][141] +3 other tests pass [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@xe_pm_residency@cpg-basic.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@xe_pm_residency@cpg-basic.html * igt@xe_wedged@wedged-mode-toggle: - shard-bmg: [DMESG-WARN][142] -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-5/igt@xe_wedged@wedged-mode-toggle.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-4/igt@xe_wedged@wedged-mode-toggle.html #### Warnings #### * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-bmg: [DMESG-WARN][144] ([Intel XE#3468] / [Intel XE#877]) -> [DMESG-FAIL][145] ([Intel XE#3468]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0: - shard-bmg: [DMESG-FAIL][146] ([Intel XE#3468]) -> [DMESG-WARN][147] ([Intel XE#3468]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][148] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][149] ([Intel XE#2887]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-bmg: [SKIP][150] ([Intel XE#3007]) -> [SKIP][151] ([Intel XE#2252]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-2/igt@kms_chamelium_frames@vga-frame-dump.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: [SKIP][152] ([Intel XE#3007]) -> [SKIP][153] ([Intel XE#2320]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [SKIP][154] ([Intel XE#2291]) -> [DMESG-WARN][155] ([Intel XE#877]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [SKIP][156] ([Intel XE#2316]) -> [FAIL][157] ([Intel XE#2882]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3: - shard-bmg: [DMESG-WARN][158] -> [DMESG-WARN][159] ([Intel XE#3468]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][160] ([Intel XE#2312]) -> [SKIP][161] ([Intel XE#2311]) +7 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][162] ([Intel XE#2311]) -> [SKIP][163] ([Intel XE#2312]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: [DMESG-FAIL][164] ([Intel XE#3468]) -> [FAIL][165] ([Intel XE#2333]) +4 other tests fail [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-bmg: [SKIP][166] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][167] ([Intel XE#2333]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: [DMESG-FAIL][168] ([Intel XE#3468]) -> [SKIP][169] ([Intel XE#2312]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][170] ([Intel XE#2312]) -> [FAIL][171] ([Intel XE#2333]) +4 other tests fail [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [INCOMPLETE][172] ([Intel XE#1727]) -> [FAIL][173] ([Intel XE#2333]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][174] ([Intel XE#2333]) -> [DMESG-FAIL][175] ([Intel XE#3468]) +5 other tests dmesg-fail [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][176] ([Intel XE#2312]) -> [DMESG-FAIL][177] ([Intel XE#3468]) +1 other test dmesg-fail [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][178] ([Intel XE#2333]) -> [SKIP][179] ([Intel XE#2312]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][180] ([Intel XE#2313]) -> [SKIP][181] ([Intel XE#2312]) +7 other tests skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][182] ([Intel XE#2312]) -> [SKIP][183] ([Intel XE#2313]) +8 other tests skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_pm_lpsp@kms-lpsp: - shard-bmg: [SKIP][184] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][185] ([Intel XE#2499]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-2/igt@kms_pm_lpsp@kms-lpsp.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr@fbc-pr-basic: - shard-bmg: [SKIP][186] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][187] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-2/igt@kms_psr@fbc-pr-basic.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@kms_psr@fbc-pr-basic.html * igt@kms_setmode@basic: - shard-bmg: [DMESG-FAIL][188] ([Intel XE#3468]) -> [FAIL][189] ([Intel XE#2883]) +1 other test fail [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@kms_setmode@basic.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-b-hdmi-a-3: - shard-bmg: [FAIL][190] ([Intel XE#3559]) -> [FAIL][191] ([Intel XE#2883]) +2 other tests fail [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-7/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html * igt@kms_vblank@query-busy: - shard-bmg: [DMESG-WARN][192] ([Intel XE#3468]) -> [DMESG-FAIL][193] ([Intel XE#3468]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-6/igt@kms_vblank@query-busy.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-2/igt@kms_vblank@query-busy.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-bmg: [TIMEOUT][194] ([Intel XE#1473]) -> [INCOMPLETE][195] ([Intel XE#1473]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-large.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate: - shard-bmg: [SKIP][196] ([Intel XE#1130]) -> [SKIP][197] ([Intel XE#2322]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-bmg: [DMESG-WARN][198] ([Intel XE#3343]) -> [DMESG-WARN][199] ([Intel XE#3343] / [Intel XE#3468]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-bmg: [DMESG-WARN][200] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][201] ([Intel XE#3467]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: - shard-bmg: [DMESG-WARN][202] ([Intel XE#3467]) -> [DMESG-WARN][203] ([Intel XE#3467] / [Intel XE#3468]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][204] ([Intel XE#2833]) -> [SKIP][205] ([Intel XE#1192]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html * igt@xe_pm@s2idle-exec-after: - shard-bmg: [ABORT][206] -> [ABORT][207] ([Intel XE#3468]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-8/igt@xe_pm@s2idle-exec-after.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-3/igt@xe_pm@s2idle-exec-after.html * igt@xe_wedged@basic-wedged: - shard-bmg: [SKIP][208] ([Intel XE#1130]) -> [DMESG-WARN][209] ([Intel XE#2919] / [Intel XE#3468]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8134/shard-bmg-2/igt@xe_wedged@basic-wedged.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/shard-bmg-8/igt@xe_wedged@basic-wedged.html [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [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#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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#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#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [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#3557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3557 [Intel XE#3559]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3559 [Intel XE#3640]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3640 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8134 -> IGTPW_12230 * Linux: xe-2306-83cfa47b496201ff05d4a369f6fe3f75665a2acf -> xe-2307-4de82d50b8de6a278c1483a7f76ae830c89d1824 IGTPW_12230: 12230 IGT_8134: 027fbf68a00630d7bb8ae200c620296e2bad971d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2306-83cfa47b496201ff05d4a369f6fe3f75665a2acf: 83cfa47b496201ff05d4a369f6fe3f75665a2acf xe-2307-4de82d50b8de6a278c1483a7f76ae830c89d1824: 4de82d50b8de6a278c1483a7f76ae830c89d1824 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12230/index.html [-- Attachment #2: Type: text/html, Size: 66584 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-12-12 6:13 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-12-03 3:42 [PATCH i-g-t v6 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati 2024-12-03 3:42 ` [PATCH i-g-t v6 1/1] tests/intel/kms_joiner: switch modeset between uj and bj Santhosh Reddy Guddati 2024-12-03 3:42 ` [PATCH i-g-t v6 1/1] tests/intel/kms_joiner: switch modeset between ultra and big joiner Santhosh Reddy Guddati 2024-12-12 6:12 ` Karthik B S 2024-12-03 4:25 ` ✓ Xe.CI.BAT: success for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev6) Patchwork 2024-12-03 4:35 ` ✗ i915.CI.BAT: failure " Patchwork 2024-12-03 4:53 ` ✗ GitLab.Pipeline: warning " Patchwork 2024-12-03 5:15 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox