* [igt-dev] [PATCH i-g-t 0/3] tests/kms_plane_scaling: add get_num_scalers()
@ 2023-10-13 10:23 Swati Sharma
2023-10-13 10:23 ` [igt-dev] [PATCH i-g-t 1/3] lib/igt_kms: cosmetic changes Swati Sharma
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: Swati Sharma @ 2023-10-13 10:23 UTC (permalink / raw)
To: igt-dev
Add get_num_scalers() to lib and use same in kms_plane_scaling.
Swati Sharma (3):
lib/igt_kms: cosmetic changes
lib/igt_kms: add get_num_scalers()
tests/kms_plane_scaling: use get_num_scalers()
lib/igt_kms.c | 82 +++++++++++++++++++++++++++------------
lib/igt_kms.h | 1 +
tests/kms_plane_scaling.c | 24 ++++++++++++
3 files changed, 83 insertions(+), 24 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [igt-dev] [PATCH i-g-t 1/3] lib/igt_kms: cosmetic changes 2023-10-13 10:23 [igt-dev] [PATCH i-g-t 0/3] tests/kms_plane_scaling: add get_num_scalers() Swati Sharma @ 2023-10-13 10:23 ` Swati Sharma 2023-10-13 10:23 ` [igt-dev] [PATCH i-g-t 2/3] lib/igt_kms: add get_num_scalers() Swati Sharma ` (5 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Swati Sharma @ 2023-10-13 10:23 UTC (permalink / raw) To: igt-dev Remove extra \n and fix documentation style. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- lib/igt_kms.c | 43 +++++++++++++++++++------------------------ 1 file changed, 19 insertions(+), 24 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index ec4cd78cd..8dc0edc89 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -857,7 +857,7 @@ const char *kmstest_pipe_name(enum pipe pipe) /** * kmstest_pipe_to_index: - *@pipe: display pipe in string format + * @pipe: display pipe in string format * * Returns: index to corresponding pipe */ @@ -1144,7 +1144,6 @@ static int __intel_get_pipe_from_crtc_id(int fd, int crtc_id, int crtc_idx) * value used in other helper functions. Returns 0 if the index could not be * determined. */ - int kmstest_get_pipe_from_crtc_id(int fd, int crtc_id) { drmModeRes *res; @@ -2112,7 +2111,6 @@ unsigned int kmstest_get_vblank(int fd, int pipe, unsigned int flags) * @fd: Opened drm file descriptor * * Blocks until pageflip is completed - * */ void kmstest_wait_for_pageflip(int fd) { @@ -2163,7 +2161,6 @@ bool kms_has_vblank(int fd) /* * A small modeset API */ - #define LOG_SPACES " " #define LOG_N_SPACES (sizeof(LOG_SPACES) - 1) @@ -2420,7 +2417,7 @@ void igt_display_reset(igt_display_t *display) static void igt_fill_plane_format_mod(igt_display_t *display, igt_plane_t *plane); static void igt_fill_display_format_mod(igt_display_t *display); -/* +/** * igt_require_pipe: * @display: pointer to igt_display_t * @pipe: pipe which need to check @@ -2948,8 +2945,8 @@ drmModeModeInfo *igt_std_1024_mode_get(int vrefresh) return igt_memdup(&std_1024_mode, sizeof(std_1024_mode)); } -/* - * igt_modeset_disable_all_outputs +/** + * igt_modeset_disable_all_outputs: * @diplay: igt display structure * * Modeset to disable all output @@ -4484,7 +4481,7 @@ void igt_output_override_mode(igt_output_t *output, const drmModeModeInfo *mode) } } -/* +/** * igt_output_preferred_vrefresh: * @output: Output whose preferred vrefresh is queried * @@ -4502,7 +4499,7 @@ int igt_output_preferred_vrefresh(igt_output_t *output) return 60; } -/* +/** * igt_output_set_pipe: * @output: Target output for which the pipe is being set to * @pipe: Display pipe to set to @@ -4625,7 +4622,7 @@ bool igt_override_all_active_output_modes_to_fit_bw(igt_display_t *display) return __override_all_active_output_modes_to_fit_bw(display, outputs, n_outputs, 0); } -/* +/** * igt_pipe_refresh: * @display: a pointer to an #igt_display_t structure * @pipe: Pipe to refresh @@ -5466,9 +5463,7 @@ bool igt_display_has_format_mod(igt_display_t *display, uint32_t format, * The blob information is exposed from drm/drm_connector.c in the kernel. * The format of the tile property is defined in the kernel as char tile[256] * that consists of 8 integers that are ':' separated. - * */ - void igt_parse_connector_tile_blob(drmModePropertyBlobPtr blob, igt_tile_info_t *tile) { @@ -5587,7 +5582,6 @@ uint32_t igt_reduce_format(uint32_t format) * * Iterates through list of connectors and * dumps their list of modes. - * */ void igt_dump_connectors_fd(int drmfd) { @@ -5688,7 +5682,7 @@ void igt_dump_crtcs_fd(int drmfd) drmModeFreeResources(mode_resources); } -/* +/** * igt_get_output_max_bpc: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -5716,7 +5710,7 @@ unsigned int igt_get_output_max_bpc(int drmfd, char *connector_name) return maximum; } -/* +/** * igt_get_pipe_current_bpc: * @drmfd: A drm file descriptor * @pipe: Display pipe @@ -5763,7 +5757,7 @@ static unsigned int get_current_bpc(int drmfd, enum pipe pipe, return current; } -/* +/** * igt_assert_output_bpc_equal: * @drmfd: A drm file descriptor * @pipe: Display pipe @@ -5780,7 +5774,7 @@ void igt_assert_output_bpc_equal(int drmfd, enum pipe pipe, igt_assert_eq(current, bpc); } -/* +/** * igt_check_output_bpc_equal: * @drmfd: A drm file descriptor * @pipe: Display pipe @@ -5798,7 +5792,7 @@ bool igt_check_output_bpc_equal(int drmfd, enum pipe pipe, return (current == bpc); } -/* +/** * igt_max_bpc_constraint * @display: a pointer to an #igt_display_t structure * @pipe: Display pipe @@ -5841,7 +5835,7 @@ bool igt_max_bpc_constraint(igt_display_t *display, enum pipe pipe, return false; } -/* +/** * igt_get_max_dotclock: * @fd: A drm file descriptor * @@ -5886,7 +5880,8 @@ int igt_get_max_dotclock(int fd) return max_dotclock; } -/* igt_bigjoiner_possible: +/** + * igt_bigjoiner_possible: * @mode: libdrm mode * @max_dotclock: Max pixel clock frequency * @@ -5901,7 +5896,7 @@ bool igt_bigjoiner_possible(drmModeModeInfo *mode, int max_dotclock) mode->clock > max_dotclock); } -/* +/** * igt_check_bigjoiner_support: * @display: a pointer to an #igt_display_t structure * @@ -6002,7 +5997,7 @@ bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode) return true; } -/* +/** * i915_pipe_output_combo_valid: * @display: a pointer to an #igt_display_t structure * @@ -6047,7 +6042,7 @@ bool i915_pipe_output_combo_valid(igt_display_t *display) } /** - * igt_check_output_is_dp_mst + * igt_check_output_is_dp_mst: * @output: Target output * * Returns: true if output is dp-mst, else false. @@ -6071,7 +6066,7 @@ static int parse_path_connector(char *connector_path) } /** - * igt_get_dp_mst_connector_id + * igt_get_dp_mst_connector_id: * @output: Target output * * Returns: connector id if output is dp-mst, else -EINVAL. -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 2/3] lib/igt_kms: add get_num_scalers() 2023-10-13 10:23 [igt-dev] [PATCH i-g-t 0/3] tests/kms_plane_scaling: add get_num_scalers() Swati Sharma 2023-10-13 10:23 ` [igt-dev] [PATCH i-g-t 1/3] lib/igt_kms: cosmetic changes Swati Sharma @ 2023-10-13 10:23 ` Swati Sharma 2023-10-13 12:06 ` Juha-Pekka Heikkila 2023-10-13 10:23 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_plane_scaling: use get_num_scalers() Swati Sharma ` (4 subsequent siblings) 6 siblings, 1 reply; 9+ messages in thread From: Swati Sharma @ 2023-10-13 10:23 UTC (permalink / raw) To: igt-dev Add get_num_scalers(), which will return no. of scalers/CRTC. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- lib/igt_kms.c | 39 +++++++++++++++++++++++++++++++++++++++ lib/igt_kms.h | 1 + 2 files changed, 40 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 8dc0edc89..666a69495 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6084,3 +6084,42 @@ int igt_get_dp_mst_connector_id(igt_output_t *output) return connector_id; } + +/** + * get_num_scalers: + * @drm_fd: drm file descriptor + * @pipe: display pipe + * + * Returns: num_scalers supported/pipe. + */ +int get_num_scalers(int drm_fd, enum pipe pipe) +{ + char buf[8120]; + char *start_loc1, *start_loc2; + int dir, res; + int num_scalers = 0; + char dest[20] = ":pipe "; + + strcat(dest, kmstest_pipe_name(pipe)); + + if (is_intel_device(drm_fd) && + intel_display_ver(intel_get_drm_devid(drm_fd)) >= 9) { + + dir = igt_debugfs_dir(drm_fd); + igt_assert(dir >= 0); + + res = igt_debugfs_simple_read(dir, "i915_display_info", buf, sizeof(buf)); + close(dir); + igt_require(res > 0); + + start_loc1 = strstr(buf, dest); + printf("start_loc1=%s\n", start_loc1); + + if ((start_loc1 = strstr(buf, dest))) { + igt_assert(start_loc2 = strstr(start_loc1, "num_scalers=")); + igt_assert_eq(sscanf(start_loc2, "num_scalers=%d", &num_scalers), 1); + } + } + + return num_scalers; +} diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 4bcaf3f73..356620dc6 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1016,5 +1016,6 @@ bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode); bool i915_pipe_output_combo_valid(igt_display_t *display); bool igt_check_output_is_dp_mst(igt_output_t *output); int igt_get_dp_mst_connector_id(igt_output_t *output); +int get_num_scalers(int drm_fd, enum pipe pipe); #endif /* __IGT_KMS_H__ */ -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/3] lib/igt_kms: add get_num_scalers() 2023-10-13 10:23 ` [igt-dev] [PATCH i-g-t 2/3] lib/igt_kms: add get_num_scalers() Swati Sharma @ 2023-10-13 12:06 ` Juha-Pekka Heikkila 0 siblings, 0 replies; 9+ messages in thread From: Juha-Pekka Heikkila @ 2023-10-13 12:06 UTC (permalink / raw) To: Swati Sharma, igt-dev On 13.10.2023 13.23, Swati Sharma wrote: > Add get_num_scalers(), which will return no. of scalers/CRTC. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > lib/igt_kms.c | 39 +++++++++++++++++++++++++++++++++++++++ > lib/igt_kms.h | 1 + > 2 files changed, 40 insertions(+) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 8dc0edc89..666a69495 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -6084,3 +6084,42 @@ int igt_get_dp_mst_connector_id(igt_output_t *output) > > return connector_id; > } > + > +/** > + * get_num_scalers: > + * @drm_fd: drm file descriptor > + * @pipe: display pipe > + * > + * Returns: num_scalers supported/pipe. > + */ > +int get_num_scalers(int drm_fd, enum pipe pipe) > +{ > + char buf[8120]; > + char *start_loc1, *start_loc2; > + int dir, res; > + int num_scalers = 0; > + char dest[20] = ":pipe "; > + > + strcat(dest, kmstest_pipe_name(pipe)); > + > + if (is_intel_device(drm_fd) && > + intel_display_ver(intel_get_drm_devid(drm_fd)) >= 9) { > + > + dir = igt_debugfs_dir(drm_fd); > + igt_assert(dir >= 0); > + > + res = igt_debugfs_simple_read(dir, "i915_display_info", buf, sizeof(buf)); > + close(dir); > + igt_require(res > 0); > + > + start_loc1 = strstr(buf, dest); > + printf("start_loc1=%s\n", start_loc1); this printf I think doesn't belong here. Otherwise patch look ok. > + > + if ((start_loc1 = strstr(buf, dest))) { > + igt_assert(start_loc2 = strstr(start_loc1, "num_scalers=")); > + igt_assert_eq(sscanf(start_loc2, "num_scalers=%d", &num_scalers), 1); > + } > + } > + > + return num_scalers; > +} > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index 4bcaf3f73..356620dc6 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -1016,5 +1016,6 @@ bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode); > bool i915_pipe_output_combo_valid(igt_display_t *display); > bool igt_check_output_is_dp_mst(igt_output_t *output); > int igt_get_dp_mst_connector_id(igt_output_t *output); > +int get_num_scalers(int drm_fd, enum pipe pipe); > > #endif /* __IGT_KMS_H__ */ ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 3/3] tests/kms_plane_scaling: use get_num_scalers() 2023-10-13 10:23 [igt-dev] [PATCH i-g-t 0/3] tests/kms_plane_scaling: add get_num_scalers() Swati Sharma 2023-10-13 10:23 ` [igt-dev] [PATCH i-g-t 1/3] lib/igt_kms: cosmetic changes Swati Sharma 2023-10-13 10:23 ` [igt-dev] [PATCH i-g-t 2/3] lib/igt_kms: add get_num_scalers() Swati Sharma @ 2023-10-13 10:23 ` Swati Sharma 2023-10-13 12:06 ` [igt-dev] [PATCH i-g-t 0/3] tests/kms_plane_scaling: add get_num_scalers() Juha-Pekka Heikkila ` (3 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Swati Sharma @ 2023-10-13 10:23 UTC (permalink / raw) To: igt-dev Verify the count of supported scalers per CRTC, and proceed with executing tests if the necessary number of scalers is available. With the exception of "planes-.*" and "2x-scaler-multi-pipe" subtests, a minimum of 1 scaler is needed for all other tests, while these specific tests require a minimum of 2 scalers. v2: -improved commit message (Kamil) -handled get_num_scalers() for non-intel devices (Kamil) v3: -fixed get_num_scalers() (JP) -added get_num_scalers() to lib (JP) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/kms_plane_scaling.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c index 25a57e6f1..720e82d38 100644 --- a/tests/kms_plane_scaling.c +++ b/tests/kms_plane_scaling.c @@ -1093,6 +1093,9 @@ static void test_scaler_with_multi_pipe_plane(data_t *d) igt_output_set_pipe(output1, pipe1); igt_output_set_pipe(output2, pipe2); + igt_require(get_num_scalers(d->drm_fd, pipe1) >= 2); + igt_require(get_num_scalers(d->drm_fd, pipe2) >= 2); + plane[0] = igt_output_get_plane(output1, 0); igt_require(plane[0]); plane[1] = igt_output_get_plane(output1, 0); @@ -1191,6 +1194,8 @@ static void invalid_parameter_tests(data_t *d) igt_output_set_pipe(output, pipe); plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + igt_require(get_num_scalers(d->drm_fd, pipe) >= 1); + igt_create_fb(d->drm_fd, 256, 256, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, @@ -1375,6 +1380,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) for_each_valid_output_on_pipe(&data.display, pipe, output) { if (!pipe_output_combo_valid(&data.display, pipe, output)) continue; + if (get_num_scalers(data.drm_fd, pipe) < 1) + continue; igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) { drmModeModeInfo *mode = igt_output_get_mode(output); @@ -1398,6 +1405,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) for_each_valid_output_on_pipe(&data.display, pipe, output) { if (!pipe_output_combo_valid(&data.display, pipe, output)) continue; + if (get_num_scalers(data.drm_fd, pipe) < 1) + continue; igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) { drmModeModeInfo *mode = igt_output_get_mode(output); @@ -1421,6 +1430,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) for_each_valid_output_on_pipe(&data.display, pipe, output) { if (!pipe_output_combo_valid(&data.display, pipe, output)) continue; + if (get_num_scalers(data.drm_fd, pipe) < 1) + continue; igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) { drmModeModeInfo *mode = igt_output_get_mode(output); @@ -1443,6 +1454,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) for_each_valid_output_on_pipe(&data.display, pipe, output) { if (!pipe_output_combo_valid(&data.display, pipe, output)) continue; + if (get_num_scalers(data.drm_fd, pipe) < 1) + continue; igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) { drmModeModeInfo *mode = igt_output_get_mode(output); @@ -1461,6 +1474,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) for_each_valid_output_on_pipe(&data.display, pipe, output) { if (!pipe_output_combo_valid(&data.display, pipe, output)) continue; + if (get_num_scalers(data.drm_fd, pipe) < 1) + continue; igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) { drmModeModeInfo *mode = igt_output_get_mode(output); @@ -1479,6 +1494,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) for_each_valid_output_on_pipe(&data.display, pipe, output) { if (!pipe_output_combo_valid(&data.display, pipe, output)) continue; + if (get_num_scalers(data.drm_fd, pipe) < 1) + continue; igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) { drmModeModeInfo *mode = igt_output_get_mode(output); @@ -1497,6 +1514,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) for_each_valid_output_on_pipe(&data.display, pipe, output) { if (!pipe_output_combo_valid(&data.display, pipe, output)) continue; + if (get_num_scalers(data.drm_fd, pipe) < 2) + continue; igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) { drmModeModeInfo *mode = igt_output_get_mode(output); @@ -1521,6 +1540,9 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) for_each_pipe(&data.display, pipe) { for_each_valid_output_on_pipe(&data.display, pipe, output) { drmModeModeInfo *mode = NULL; + + if (get_num_scalers(data.drm_fd, pipe) < 1) + continue; /* * Need to find mode with lowest vrefresh else * we can exceed cdclk limits. @@ -1544,6 +1566,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) for_each_pipe_with_valid_output(&data.display, pipe, output) { if (!pipe_output_combo_valid(&data.display, pipe, output)) continue; + if (get_num_scalers(data.drm_fd, pipe) < 1) + continue; igt_dynamic_f("pipe-%s-%s-invalid-num-scalers", kmstest_pipe_name(pipe), igt_output_name(output)) -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 0/3] tests/kms_plane_scaling: add get_num_scalers() 2023-10-13 10:23 [igt-dev] [PATCH i-g-t 0/3] tests/kms_plane_scaling: add get_num_scalers() Swati Sharma ` (2 preceding siblings ...) 2023-10-13 10:23 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_plane_scaling: use get_num_scalers() Swati Sharma @ 2023-10-13 12:06 ` Juha-Pekka Heikkila 2023-10-13 13:30 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_scaling: add get_num_scalers() (rev3) Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Juha-Pekka Heikkila @ 2023-10-13 12:06 UTC (permalink / raw) To: Swati Sharma, igt-dev There's minor nag on patch 2. With that fixed these 3 patches are Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> On 13.10.2023 13.23, Swati Sharma wrote: > Add get_num_scalers() to lib and use same in kms_plane_scaling. > > Swati Sharma (3): > lib/igt_kms: cosmetic changes > lib/igt_kms: add get_num_scalers() > tests/kms_plane_scaling: use get_num_scalers() > > lib/igt_kms.c | 82 +++++++++++++++++++++++++++------------ > lib/igt_kms.h | 1 + > tests/kms_plane_scaling.c | 24 ++++++++++++ > 3 files changed, 83 insertions(+), 24 deletions(-) > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_scaling: add get_num_scalers() (rev3) 2023-10-13 10:23 [igt-dev] [PATCH i-g-t 0/3] tests/kms_plane_scaling: add get_num_scalers() Swati Sharma ` (3 preceding siblings ...) 2023-10-13 12:06 ` [igt-dev] [PATCH i-g-t 0/3] tests/kms_plane_scaling: add get_num_scalers() Juha-Pekka Heikkila @ 2023-10-13 13:30 ` Patchwork 2023-10-13 14:12 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-10-14 14:58 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-10-13 13:30 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3525 bytes --] == Series Details == Series: tests/kms_plane_scaling: add get_num_scalers() (rev3) URL : https://patchwork.freedesktop.org/series/117935/ State : success == Summary == CI Bug Log - changes from IGT_7536 -> IGTPW_9997 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/index.html Participating hosts (38 -> 36) ------------------------------ Additional (1): fi-kbl-soraka Missing (3): fi-hsw-4770 fi-snb-2520m fi-bsw-n3050 Known issues ------------ Here are the changes found in IGTPW_9997 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_busy@busy@all-engines: - bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#8962]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/bat-mtlp-8/igt@gem_busy@busy@all-engines.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/bat-mtlp-8/igt@gem_busy@busy@all-engines.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][5] ([i915#1886]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@kms_dsc@dsc-basic: - fi-kbl-soraka: NOTRUN -> [SKIP][6] ([fdo#109271]) +9 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-modeset@a-dp1: - bat-adlp-9: [FAIL][7] -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/bat-adlp-9/igt@kms_flip@basic-flip-vs-modeset@a-dp1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/bat-adlp-9/igt@kms_flip@basic-flip-vs-modeset@a-dp1.html * igt@kms_flip@basic-flip-vs-modeset@c-dp1: - bat-adlp-9: [FAIL][9] ([i915#6121]) -> [PASS][10] +2 other tests pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/bat-adlp-9/igt@kms_flip@basic-flip-vs-modeset@c-dp1.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/bat-adlp-9/igt@kms_flip@basic-flip-vs-modeset@c-dp1.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7536 -> IGTPW_9997 CI-20190529: 20190529 CI_DRM_13752: 6e58c5478b3011e16f563b812da45ce47853bb6c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9997: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/index.html IGT_7536: fdd51d526a9a7cb875cfad2641e90a72af392d98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/index.html [-- Attachment #2: Type: text/html, Size: 4430 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/kms_plane_scaling: add get_num_scalers() (rev3) 2023-10-13 10:23 [igt-dev] [PATCH i-g-t 0/3] tests/kms_plane_scaling: add get_num_scalers() Swati Sharma ` (4 preceding siblings ...) 2023-10-13 13:30 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_scaling: add get_num_scalers() (rev3) Patchwork @ 2023-10-13 14:12 ` Patchwork 2023-10-14 14:58 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-10-13 14:12 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2285 bytes --] == Series Details == Series: tests/kms_plane_scaling: add get_num_scalers() (rev3) URL : https://patchwork.freedesktop.org/series/117935/ State : success == Summary == CI Bug Log - changes from XEIGT_7536_BAT -> XEIGTPW_9997_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9997_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#480]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7536/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9997/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1: - bat-adlp-7: [FAIL][3] ([Intel XE#480]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7536/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9997/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html * igt@xe_exec_reset@virtual-close-fd-no-exec: - bat-pvc-2: [DMESG-WARN][5] ([Intel XE#696]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7536/bat-pvc-2/igt@xe_exec_reset@virtual-close-fd-no-exec.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9997/bat-pvc-2/igt@xe_exec_reset@virtual-close-fd-no-exec.html [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#696]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/696 Build changes ------------- * IGT: IGT_7536 -> IGTPW_9997 IGTPW_9997: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/index.html IGT_7536: fdd51d526a9a7cb875cfad2641e90a72af392d98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-433-037b6c8b23818fa71223e996c68a4f55f2d91338: 037b6c8b23818fa71223e996c68a4f55f2d91338 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9997/index.html [-- Attachment #2: Type: text/html, Size: 2979 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_plane_scaling: add get_num_scalers() (rev3) 2023-10-13 10:23 [igt-dev] [PATCH i-g-t 0/3] tests/kms_plane_scaling: add get_num_scalers() Swati Sharma ` (5 preceding siblings ...) 2023-10-13 14:12 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-10-14 14:58 ` Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-10-14 14:58 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 75928 bytes --] == Series Details == Series: tests/kms_plane_scaling: add get_num_scalers() (rev3) URL : https://patchwork.freedesktop.org/series/117935/ State : success == Summary == CI Bug Log - changes from IGT_7536_full -> IGTPW_9997_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/index.html Participating hosts (10 -> 10) ------------------------------ Additional (1): shard-tglu0 Missing (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9997_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_pm_rpm@i2c}: - shard-dg2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg2-6/igt@kms_pm_rpm@i2c.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@kms_pm_rpm@i2c.html New tests --------- New tests have been introduced between IGT_7536_full and IGTPW_9997_full: ### New IGT tests (22) ### * igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_atomic_interruptible@universal-setplane-primary@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-htotal@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-htotal@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-htotal@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-htotal@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@get-forked-busy@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@get-forked-busy@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@get-forked-busy@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@get-forked-busy@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@get-idle@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@get-idle@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@get-idle@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@get-idle@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-busy@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-busy@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-idle@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-idle@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-idle@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-idle@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-idle@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-idle@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9997_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-11/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-13/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#7701]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-8/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][6] -> [FAIL][7] ([i915#7742]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-7/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +20 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-6/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@drm_fdinfo@virtual-busy-all: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-16/igt@drm_fdinfo@virtual-busy-all.html * igt@drm_fdinfo@virtual-busy-hang-all: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8414]) +6 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-1/igt@drm_fdinfo@virtual-busy-hang-all.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-1/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@close-race: - shard-tglu: [PASS][12] -> [ABORT][13] ([i915#6016]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-tglu-9/igt@gem_busy@close-race.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-tglu-7/igt@gem_busy@close-race.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#3936]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@gem_busy@semaphore.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#4098] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-dg1: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-12/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][17] ([i915#7297]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][18] -> [FAIL][19] ([i915#6268]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-6/igt@gem_ctx_exec@basic-nohangcheck.html - shard-mtlp: [PASS][20] -> [FAIL][21] ([i915#6268]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-2/igt@gem_ctx_exec@basic-nohangcheck.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [PASS][22] -> [FAIL][23] ([i915#2410]) +1 other test fail [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-4/igt@gem_ctx_persistence@engines-hostile@vcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-1/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_sseu@invalid-args: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-2/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#280]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-false-hang: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4812]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-2/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4771]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-11/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-6/igt@gem_exec_balancer@sliced.html * igt@gem_exec_fair@basic-pace: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#3539]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-18/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [PASS][31] -> [FAIL][32] ([i915#2842]) +1 other test fail [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-6/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#7697]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-5/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#5107]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-1/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3281]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3281]) +15 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-wc: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#3281]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-4/igt@gem_exec_reloc@basic-wc.html - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3281]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-17/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_schedule@preempt-engines@ccs0: - shard-mtlp: [PASS][40] -> [FAIL][41] ([i915#9119]) +4 other tests fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-6/igt@gem_exec_schedule@preempt-engines@ccs0.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@ccs0.html * igt@gem_exec_schedule@preempt-engines@rcs0: - shard-mtlp: [PASS][42] -> [DMESG-FAIL][43] ([i915#8962]) +1 other test dmesg-fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-6/igt@gem_exec_schedule@preempt-engines@rcs0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@rcs0.html * igt@gem_exec_schedule@preemptive-hang@vcs1: - shard-mtlp: [PASS][44] -> [ABORT][45] ([i915#9414]) +1 other test abort [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-3/igt@gem_exec_schedule@preemptive-hang@vcs1.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-4/igt@gem_exec_schedule@preemptive-hang@vcs1.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][46] ([i915#7975] / [i915#8213]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4860]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-2/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@parallel-multi: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-7/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-glk: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#4613]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-glk8/igt@gem_lmem_swapping@parallel-random-engines.html - shard-rkl: NOTRUN -> [SKIP][50] ([i915#4613]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#8289]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-6/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@basic-read-write: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-11/igt@gem_mmap_gtt@basic-read-write.html * igt@gem_mmap_gtt@basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4077]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-14/igt@gem_mmap_gtt@basic-small-copy-odd.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4077]) +6 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-7/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_wc@bad-object: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +9 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-11/igt@gem_mmap_wc@bad-object.html * igt@gem_mmap_wc@close: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4083]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-5/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@coherency: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-14/igt@gem_mmap_wc@coherency.html * igt@gem_partial_pwrite_pread@write: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#3282]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-6/igt@gem_partial_pwrite_pread@write.html * igt@gem_pread@exhaustion: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3282]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-1/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +6 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-11/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-context-2: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4270]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-6/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@create-valid-protected-context: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-18/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4270]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#4270]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-off-3.html - shard-tglu: NOTRUN -> [SKIP][65] ([i915#4270]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-tglu-5/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_readwrite@beyond-eob: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3282]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-15/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#8428]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-7/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4079]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-3/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4079]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-11/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3297]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3297] / [i915#4880]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3297]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297] / [i915#4958]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@vma-merge: - shard-mtlp: NOTRUN -> [FAIL][75] ([i915#3318]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-1/igt@gem_userptr_blits@vma-merge.html * igt@gem_workarounds@suspend-resume-fd: - shard-snb: NOTRUN -> [DMESG-WARN][76] ([i915#8841]) +1 other test dmesg-warn [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-snb5/igt@gem_workarounds@suspend-resume-fd.html * igt@gen7_exec_parse@basic-offset: - shard-glk: NOTRUN -> [SKIP][77] ([fdo#109271]) +50 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-glk3/igt@gen7_exec_parse@basic-offset.html - shard-rkl: NOTRUN -> [SKIP][78] ([fdo#109289]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-2/igt@gen7_exec_parse@basic-offset.html - shard-tglu: NOTRUN -> [SKIP][79] ([fdo#109289]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-tglu-9/igt@gen7_exec_parse@basic-offset.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][80] ([fdo#109289]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-1/igt@gen7_exec_parse@basic-rejected.html * igt@gen7_exec_parse@chained-batch: - shard-dg1: NOTRUN -> [SKIP][81] ([fdo#109289]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-17/igt@gen7_exec_parse@chained-batch.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][82] ([fdo#109289]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-5/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-4/igt@gen9_exec_parse@bb-chained.html - shard-tglu: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-tglu-3/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-far: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#2856]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-6/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-14/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-3/igt@gen9_exec_parse@shadow-peek.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4881]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-1/igt@i915_fb_tiling.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: [PASS][89] -> [FAIL][90] ([i915#8456]) +2 other tests fail [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-1/igt@i915_hangman@detector@vcs0.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-8/igt@i915_hangman@detector@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: NOTRUN -> [ABORT][91] ([i915#8489] / [i915#8668]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#6590]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-2/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#6188]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@mock@memory_region: - shard-mtlp: NOTRUN -> [DMESG-WARN][94] ([i915#9311]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-7/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@forcewake: - shard-dg2: NOTRUN -> [TIMEOUT][95] ([fdo#103375]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-11/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4212]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-12/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#4212]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#3826]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][99] ([i915#8247]) +3 other tests fail [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [FAIL][100] ([i915#8247]) +3 other tests fail [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#404]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-19/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4538] / [i915#5286]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-18/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][105] ([fdo#111615] / [i915#5286]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-tglu-4/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#5286]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-snb: NOTRUN -> [SKIP][107] ([fdo#109271]) +96 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-snb4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [FAIL][108] ([i915#5138]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][109] ([fdo#111614]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-1/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][110] ([fdo#111614] / [i915#3638]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-tglu: NOTRUN -> [SKIP][111] ([fdo#111614]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-tglu-6/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][112] ([fdo#111614]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#5190]) +18 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#3638]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-14/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][115] -> [FAIL][116] ([i915#3743]) +3 other tests fail [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][117] ([fdo#110723]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-15/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-rkl: NOTRUN -> [SKIP][119] ([fdo#111615]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][120] ([fdo#111615]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5190]) +5 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#2705]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-6/igt@kms_big_joiner@basic.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#7213] / [i915#9010]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-7/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4087]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@kms_chamelium_color@ctm-limited-range: - shard-mtlp: NOTRUN -> [SKIP][125] ([fdo#111827]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-8/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][126] ([fdo#111827]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-1/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#7828]) +11 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@kms_chamelium_frames@hdmi-crc-fast.html - shard-rkl: NOTRUN -> [SKIP][128] ([i915#7828]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-7/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#7828]) +4 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-15/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#7828]) +6 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][131] ([i915#7173]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#7118]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-3/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#3359]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3555]) +7 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#3555] / [i915#8814]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#3359]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#3359]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3546]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-3/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4103] / [i915#4213] / [i915#5608]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-rkl: NOTRUN -> [SKIP][140] ([fdo#111825]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][141] ([fdo#109274] / [i915#5354]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][142] ([fdo#111767] / [i915#3546]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#4103] / [i915#4213]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3555] / [i915#8812]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-2/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#3555] / [i915#3840]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-6/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#3555] / [i915#3840]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-11/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#3637]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][148] ([fdo#109274] / [fdo#111767]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-snb: NOTRUN -> [SKIP][149] ([fdo#109271] / [fdo#111767]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-snb4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#8381]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-1/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#8381]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][152] ([i915#8381]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-19/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][153] ([fdo#109274]) +7 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#2672]) +4 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#2672] / [i915#3555]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#8810]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-dg2: [PASS][157] -> [FAIL][158] ([i915#6880]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#5354]) +33 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#1825]) +12 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#8708]) +27 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][162] ([fdo#109280]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][163] ([fdo#110189]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#8708]) +6 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][165] ([fdo#111825] / [i915#1825]) +10 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8708]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3458]) +21 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][168] ([fdo#111825]) +12 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#3023]) +6 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-suspend.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#3458]) +5 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [PASS][171] -> [SKIP][172] ([i915#433]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-tglu-2/igt@kms_hdmi_inject@inject-audio.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-tglu-5/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#8228]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-14/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#8228]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes.html - shard-tglu: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#8228]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-tglu-6/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#8228]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-1/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8228]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1: - shard-apl: [PASS][178] -> [INCOMPLETE][179] ([i915#180] / [i915#9392]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#8821]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-6/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-2/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8806]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-1/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#5176] / [i915#9423]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#5235]) +11 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#5235]) +11 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#5235]) +5 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_prime@basic-modeset-hybrid: - shard-apl: NOTRUN -> [SKIP][187] ([fdo#109271]) +4 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-apl4/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#6524]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-1/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-apl: NOTRUN -> [SKIP][189] ([fdo#109271] / [i915#658]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-apl4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#658]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html - shard-dg1: NOTRUN -> [SKIP][191] ([i915#658]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-13/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#658]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-1/igt@kms_psr2_su@page_flip-nv12.html - shard-dg1: NOTRUN -> [SKIP][193] ([fdo#111068] / [i915#658]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-14/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@cursor_mmap_cpu: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#1072]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-6/igt@kms_psr@cursor_mmap_cpu.html * igt@kms_psr@dpms: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#1072]) +6 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-1/igt@kms_psr@dpms.html * igt@kms_psr@psr2_sprite_plane_onoff: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#1072] / [i915#4078]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-18/igt@kms_psr@psr2_sprite_plane_onoff.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#4235]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#4235] / [i915#5190]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#4235]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-3/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8809]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_sysfs_edid_timing: - shard-dg1: [PASS][201] -> [FAIL][202] ([IGT#2] / [i915#6493]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg1-16/igt@kms_sysfs_edid_timing.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-13/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [FAIL][203] ([i915#9196]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vblank@pipe-d-wait-busy: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#4070] / [i915#533] / [i915#6768]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-2/igt@kms_vblank@pipe-d-wait-busy.html * igt@kms_vrr@flip-basic: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#3555]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-14/igt@kms_vrr@flip-basic.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#7387]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: [PASS][207] -> [FAIL][208] ([i915#4349]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-7/igt@perf_pmu@busy-double-start@rcs0.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#8850]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-5/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][210] ([fdo#112283]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-6/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#5608] / [i915#8516]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-1/igt@perf_pmu@rc6-all-gts.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][212] ([i915#9351]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_udl: - shard-mtlp: NOTRUN -> [SKIP][213] ([fdo#109291]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-4/igt@prime_udl.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3291] / [i915#3708]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#3708]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@prime_vgem@fence-flip-hang.html - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3708]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-16/igt@prime_vgem@fence-flip-hang.html * igt@syncobj_wait@invalid-multi-wait-unsubmitted-signaled: - shard-mtlp: NOTRUN -> [DMESG-WARN][217] ([i915#2017]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-4/igt@syncobj_wait@invalid-multi-wait-unsubmitted-signaled.html * igt@v3d/v3d_create_bo@create-bo-4096: - shard-rkl: NOTRUN -> [SKIP][218] ([fdo#109315]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-4/igt@v3d/v3d_create_bo@create-bo-4096.html * igt@v3d/v3d_submit_cl@bad-flag: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#2575]) +4 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-2/igt@v3d/v3d_submit_cl@bad-flag.html * igt@v3d/v3d_submit_csd@multi-and-single-sync: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#2575]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-13/igt@v3d/v3d_submit_csd@multi-and-single-sync.html * igt@v3d/v3d_submit_csd@multiple-job-submission: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#2575]) +10 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-11/igt@v3d/v3d_submit_csd@multiple-job-submission.html * igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#7711]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-14/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html * igt@vc4/vc4_mmap@mmap-bo: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#7711]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-6/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_perfmon@create-perfmon-exceed: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#7711]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-4/igt@vc4/vc4_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_perfmon@destroy-valid-perfmon: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#7711]) +9 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html #### Possible fixes #### * igt@device_reset@unbind-reset-rebind: - shard-dg2: [ABORT][226] ([i915#5507] / [i915#8260]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg2-3/igt@device_reset@unbind-reset-rebind.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@device_reset@unbind-reset-rebind.html * igt@gem_ctx_persistence@legacy-engines-hostile@vebox: - shard-mtlp: [FAIL][228] ([i915#2410]) -> [PASS][229] +2 other tests pass [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-2/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-1/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html * igt@gem_eio@hibernate: - shard-dg1: [ABORT][230] ([i915#7975] / [i915#8213]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg1-14/igt@gem_eio@hibernate.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-15/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][232] ([i915#5784]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg1-13/igt@gem_eio@reset-stress.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-16/igt@gem_eio@reset-stress.html * igt@gem_exec_fence@nb-await@bcs0: - shard-mtlp: [ABORT][234] ([i915#9262]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-4/igt@gem_exec_fence@nb-await@bcs0.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-7/igt@gem_exec_fence@nb-await@bcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [ABORT][236] ([i915#7975] / [i915#8213]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-tglu-3/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-glk: [FAIL][238] -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-glk4/igt@gem_ppgtt@flink-and-close-vma-leak.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-glk8/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [FAIL][240] ([i915#9353]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-6/igt@gem_userptr_blits@nohangcheck.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-5/igt@gem_userptr_blits@nohangcheck.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [INCOMPLETE][242] ([i915#5566]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-glk2/igt@gen9_exec_parse@allowed-single.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-glk8/igt@gen9_exec_parse@allowed-single.html * igt@i915_hangman@engine-error-state-capture@vecs0: - shard-mtlp: [ABORT][244] ([i915#9414]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-4/igt@i915_hangman@engine-error-state-capture@vecs0.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-6/igt@i915_hangman@engine-error-state-capture@vecs0.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [FAIL][246] ([i915#7069]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-8/igt@i915_hangman@gt-engine-hang@vcs0.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-3/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [INCOMPLETE][248] ([i915#9407]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][250] ([i915#5334]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-apl2/igt@i915_selftest@live@gt_heartbeat.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][252] ([i915#3743]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * {igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-dg2-mc-ccs}: - shard-dg2: [FAIL][254] -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg2-11/igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-dg2-mc-ccs.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-1/igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-dg2-mc-ccs.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][256] ([i915#2346]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * {igt@kms_pm_rpm@dpms-lpsp}: - shard-rkl: [SKIP][258] ([i915#9519]) -> [PASS][259] +2 other tests pass [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [FAIL][260] ([i915#4349]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-7/igt@perf_pmu@busy-double-start@ccs0.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-2/igt@perf_pmu@busy-double-start@ccs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][262] ([i915#4349]) -> [PASS][263] +3 other tests pass [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@busy-idle-check-all@vecs0: - shard-dg1: [FAIL][264] ([i915#4349]) -> [PASS][265] +2 other tests pass [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vecs0.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vecs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][266] ([i915#1982] / [i915#9408]) -> [INCOMPLETE][267] ([i915#9408]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-dg1-16/igt@device_reset@unbind-reset-rebind.html * igt@gem_ctx_persistence@engines-hostile@vecs0: - shard-mtlp: [ABORT][268] ([i915#9414]) -> [FAIL][269] ([i915#2410]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-4/igt@gem_ctx_persistence@engines-hostile@vecs0.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-mtlp-1/igt@gem_ctx_persistence@engines-hostile@vecs0.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [FAIL][270] ([i915#2681] / [i915#3591]) -> [WARN][271] ([i915#2681]) +1 other test warn [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][272] ([i915#3955]) -> [SKIP][273] ([fdo#110189] / [i915#3955]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-rkl-4/igt@kms_fbcon_fbt@psr.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-1/igt@kms_fbcon_fbt@psr.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][274] ([fdo#109285] / [i915#4098]) -> [SKIP][275] ([fdo#109285]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6016]: https://gitlab.freedesktop.org/drm/intel/issues/6016 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9119]: https://gitlab.freedesktop.org/drm/intel/issues/9119 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9353]: https://gitlab.freedesktop.org/drm/intel/issues/9353 [i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392 [i915#9407]: https://gitlab.freedesktop.org/drm/intel/issues/9407 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7536 -> IGTPW_9997 CI-20190529: 20190529 CI_DRM_13752: 6e58c5478b3011e16f563b812da45ce47853bb6c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9997: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/index.html IGT_7536: fdd51d526a9a7cb875cfad2641e90a72af392d98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9997/index.html [-- Attachment #2: Type: text/html, Size: 91185 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-10-14 14:58 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-10-13 10:23 [igt-dev] [PATCH i-g-t 0/3] tests/kms_plane_scaling: add get_num_scalers() Swati Sharma 2023-10-13 10:23 ` [igt-dev] [PATCH i-g-t 1/3] lib/igt_kms: cosmetic changes Swati Sharma 2023-10-13 10:23 ` [igt-dev] [PATCH i-g-t 2/3] lib/igt_kms: add get_num_scalers() Swati Sharma 2023-10-13 12:06 ` Juha-Pekka Heikkila 2023-10-13 10:23 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_plane_scaling: use get_num_scalers() Swati Sharma 2023-10-13 12:06 ` [igt-dev] [PATCH i-g-t 0/3] tests/kms_plane_scaling: add get_num_scalers() Juha-Pekka Heikkila 2023-10-13 13:30 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_scaling: add get_num_scalers() (rev3) Patchwork 2023-10-13 14:12 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-10-14 14:58 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox