* [igt-dev] [PATCH v2 1/3] tests/amdgpu/amd_mall: Add crc check
@ 2023-08-25 13:50 Aurabindo Pillai
2023-08-25 13:50 ` [igt-dev] [PATCH v2 2/3] tests/amdgpu/amd_mall: remove UMR dependency Aurabindo Pillai
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Aurabindo Pillai @ 2023-08-25 13:50 UTC (permalink / raw)
To: igt-dev; +Cc: hersenxs.wu
In addition to checking whether display scanout from MALL cache is
triggered, double check that the same pattern is being displayed. This
can detect any corruption due to incorrect MALL size calculations
Signed-off-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
---
tests/amdgpu/amd_mall.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/tests/amdgpu/amd_mall.c b/tests/amdgpu/amd_mall.c
index c50d046ee..6016d5e8c 100644
--- a/tests/amdgpu/amd_mall.c
+++ b/tests/amdgpu/amd_mall.c
@@ -117,6 +117,7 @@ static void test_mall_ss(data_t *data)
igt_fb_t rfb;
int exec_ret;
struct line_check line = {0};
+ igt_crc_t test_crc, ref_crc;
test_init(data);
@@ -124,6 +125,7 @@ static void test_mall_ss(data_t *data)
igt_plane_set_fb(data->primary, &rfb);
igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+ igt_pipe_crc_collect_crc(data->pipe_crc, &ref_crc);
sleep(MALL_SETTLE_DELAY);
igt_system_cmd(exec_ret, "umr -O bits -r *.*.HUBP0_HUBP_MALL_STATUS | grep MALL_IN_USE");
@@ -135,6 +137,10 @@ static void test_mall_ss(data_t *data)
igt_assert_eq(line.found, 1);
+ igt_pipe_crc_collect_crc(data->pipe_crc, &test_crc);
+
+ igt_assert_crc_equal(&ref_crc, &test_crc);
+
igt_remove_fb(data->fd, &rfb);
test_fini(data);
}
--
2.41.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* [igt-dev] [PATCH v2 2/3] tests/amdgpu/amd_mall: remove UMR dependency 2023-08-25 13:50 [igt-dev] [PATCH v2 1/3] tests/amdgpu/amd_mall: Add crc check Aurabindo Pillai @ 2023-08-25 13:50 ` Aurabindo Pillai 2023-08-29 14:36 ` Rodrigo Siqueira Jordao 2023-08-25 13:50 ` [igt-dev] [PATCH v2 3/3] lib/amdgpu: checkpatch.pl fixes Aurabindo Pillai ` (5 subsequent siblings) 6 siblings, 1 reply; 10+ messages in thread From: Aurabindo Pillai @ 2023-08-25 13:50 UTC (permalink / raw) To: igt-dev; +Cc: hersenxs.wu Remove the dependency on the userspace tool UMR to check MALL status and fully rely on debugfs for simplicity of test setup. Changes in v2: * Switch to bool instead of u32 for parameters in mall status check function * Fix returning value from a function returning void. Signed-off-by: Aurabindo Pillai <aurabindo.pillai@amd.com> --- lib/igt_amd.c | 28 ++++++++++++++-------------- lib/igt_amd.h | 2 +- tests/amdgpu/amd_mall.c | 29 ++++++----------------------- 3 files changed, 21 insertions(+), 38 deletions(-) diff --git a/lib/igt_amd.c b/lib/igt_amd.c index 1a720ff56..b67cc9be0 100644 --- a/lib/igt_amd.c +++ b/lib/igt_amd.c @@ -1182,27 +1182,27 @@ static bool get_dm_capabilites(int drm_fd, char *buf, size_t size) { * @brief check if AMDGPU mall_capable interface entry exist and defined * * @param drm_fd DRM file descriptor - * @return true if mall_capable debugfs interface exists and defined - * @return false otherwise + * @return true if dm capabilities interface exists and MALL is supported + * @return false if capabilites could not be read. */ -bool igt_amd_is_mall_capable(int drm_fd) +void igt_amd_get_mall_status(int drm_fd, bool *supported, bool *enabled) { - char buf[1024], mall_read[10]; + char buf[1024]; char *mall_loc; - if (!get_dm_capabilites(drm_fd, buf, 1024)) - return false; - - mall_loc = strstr(buf,"mall: "); - if (!mall_loc) - return false; + *supported = false; + *enabled = false; - sscanf(mall_loc, "mall: %s", mall_read); + if (!get_dm_capabilites(drm_fd, buf, 1024)) + return; - if (!strcmp(mall_read, "yes")) - return true; + mall_loc = strstr(buf, "mall supported: yes"); + if (mall_loc) + *supported = true; - return false; + mall_loc = strstr(buf, "enabled: yes"); + if (mall_loc && *supported) + *enabled = true; } /** diff --git a/lib/igt_amd.h b/lib/igt_amd.h index c05b4b730..de992ac4f 100644 --- a/lib/igt_amd.h +++ b/lib/igt_amd.h @@ -199,6 +199,6 @@ bool igt_amd_has_visual_confirm(int drm_fd); int igt_amd_get_visual_confirm(int drm_fd); bool igt_amd_set_visual_confirm(int drm_fd, enum amdgpu_debug_visual_confirm option); -bool igt_amd_is_mall_capable(int drm_fd); +void igt_amd_get_mall_status(int drm_fd, bool *supported, bool *enabled); bool igt_amd_output_has_odm_combine_segments(int drm_fd, char *connector_name); #endif /* IGT_AMD_H */ diff --git a/tests/amdgpu/amd_mall.c b/tests/amdgpu/amd_mall.c index 6016d5e8c..c21fcc27f 100644 --- a/tests/amdgpu/amd_mall.c +++ b/tests/amdgpu/amd_mall.c @@ -58,6 +58,7 @@ static void test_init(data_t *data) { igt_display_t *display = &data->display; bool mall_capable = false; + bool mall_en = false; /* It doesn't matter which pipe we choose on amdpgu. */ data->pipe_id = PIPE_A; @@ -65,7 +66,7 @@ static void test_init(data_t *data) igt_display_reset(display); - mall_capable = igt_amd_is_mall_capable(data->fd); + igt_amd_get_mall_status(data->fd, &mall_capable, &mall_en); igt_require_f(mall_capable, "Requires hardware that supports MALL cache\n"); /* find a connected output */ @@ -101,44 +102,26 @@ static void test_fini(data_t *data) igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, 0); } -static bool check_cmd_output(const char *line, void *data) -{ - struct line_check *check = data; - - if (strstr(line, check->substr)) { - check->found++; - } - - return false; -} static void test_mall_ss(data_t *data) { igt_display_t *display = &data->display; igt_fb_t rfb; - int exec_ret; - struct line_check line = {0}; igt_crc_t test_crc, ref_crc; + bool mall_supp, mall_en; test_init(data); igt_create_pattern_fb(data->fd, data->w, data->h, DRM_FORMAT_XRGB8888, 0, &rfb); igt_plane_set_fb(data->primary, &rfb); igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); - igt_pipe_crc_collect_crc(data->pipe_crc, &ref_crc); - sleep(MALL_SETTLE_DELAY); - - igt_system_cmd(exec_ret, "umr -O bits -r *.*.HUBP0_HUBP_MALL_STATUS | grep MALL_IN_USE"); - - igt_skip_on_f(exec_ret != IGT_EXIT_SUCCESS, "Error running UMR\n"); - line.substr = "1 (0x00000001)"; - igt_log_buffer_inspect(check_cmd_output, &line); + sleep(MALL_SETTLE_DELAY); - igt_assert_eq(line.found, 1); + igt_amd_get_mall_status(data->fd, &mall_supp, &mall_en); + igt_fail_on_f(!(mall_supp && mall_en), "MALL did not get enabled\n"); igt_pipe_crc_collect_crc(data->pipe_crc, &test_crc); - igt_assert_crc_equal(&ref_crc, &test_crc); igt_remove_fb(data->fd, &rfb); -- 2.41.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH v2 2/3] tests/amdgpu/amd_mall: remove UMR dependency 2023-08-25 13:50 ` [igt-dev] [PATCH v2 2/3] tests/amdgpu/amd_mall: remove UMR dependency Aurabindo Pillai @ 2023-08-29 14:36 ` Rodrigo Siqueira Jordao 0 siblings, 0 replies; 10+ messages in thread From: Rodrigo Siqueira Jordao @ 2023-08-29 14:36 UTC (permalink / raw) To: Aurabindo Pillai, igt-dev; +Cc: hersenxs.wu On 8/25/23 07:50, Aurabindo Pillai wrote: > Remove the dependency on the userspace tool UMR to check MALL status > and fully rely on debugfs for simplicity of test setup. > > Changes in v2: > > * Switch to bool instead of u32 for parameters in mall status check > function > * Fix returning value from a function returning void. > > Signed-off-by: Aurabindo Pillai <aurabindo.pillai@amd.com> > --- > lib/igt_amd.c | 28 ++++++++++++++-------------- > lib/igt_amd.h | 2 +- > tests/amdgpu/amd_mall.c | 29 ++++++----------------------- > 3 files changed, 21 insertions(+), 38 deletions(-) > > diff --git a/lib/igt_amd.c b/lib/igt_amd.c > index 1a720ff56..b67cc9be0 100644 > --- a/lib/igt_amd.c > +++ b/lib/igt_amd.c > @@ -1182,27 +1182,27 @@ static bool get_dm_capabilites(int drm_fd, char *buf, size_t size) { > * @brief check if AMDGPU mall_capable interface entry exist and defined > * > * @param drm_fd DRM file descriptor > - * @return true if mall_capable debugfs interface exists and defined > - * @return false otherwise > + * @return true if dm capabilities interface exists and MALL is supported > + * @return false if capabilites could not be read. > */ > -bool igt_amd_is_mall_capable(int drm_fd) > +void igt_amd_get_mall_status(int drm_fd, bool *supported, bool *enabled) > { > - char buf[1024], mall_read[10]; > + char buf[1024]; > char *mall_loc; > > - if (!get_dm_capabilites(drm_fd, buf, 1024)) > - return false; > - > - mall_loc = strstr(buf,"mall: "); > - if (!mall_loc) > - return false; > + *supported = false; > + *enabled = false; > > - sscanf(mall_loc, "mall: %s", mall_read); > + if (!get_dm_capabilites(drm_fd, buf, 1024)) > + return; > > - if (!strcmp(mall_read, "yes")) > - return true; > + mall_loc = strstr(buf, "mall supported: yes"); > + if (mall_loc) > + *supported = true; > > - return false; > + mall_loc = strstr(buf, "enabled: yes"); > + if (mall_loc && *supported) > + *enabled = true; > } > > /** > diff --git a/lib/igt_amd.h b/lib/igt_amd.h > index c05b4b730..de992ac4f 100644 > --- a/lib/igt_amd.h > +++ b/lib/igt_amd.h > @@ -199,6 +199,6 @@ bool igt_amd_has_visual_confirm(int drm_fd); > int igt_amd_get_visual_confirm(int drm_fd); > bool igt_amd_set_visual_confirm(int drm_fd, enum amdgpu_debug_visual_confirm option); > > -bool igt_amd_is_mall_capable(int drm_fd); > +void igt_amd_get_mall_status(int drm_fd, bool *supported, bool *enabled); > bool igt_amd_output_has_odm_combine_segments(int drm_fd, char *connector_name); > #endif /* IGT_AMD_H */ > diff --git a/tests/amdgpu/amd_mall.c b/tests/amdgpu/amd_mall.c > index 6016d5e8c..c21fcc27f 100644 > --- a/tests/amdgpu/amd_mall.c > +++ b/tests/amdgpu/amd_mall.c > @@ -58,6 +58,7 @@ static void test_init(data_t *data) > { > igt_display_t *display = &data->display; > bool mall_capable = false; > + bool mall_en = false; Since igt_amd_get_mall_status will fill out mall_capable and mall_en, I guess you don't need this variable initialization. > > /* It doesn't matter which pipe we choose on amdpgu. */ > data->pipe_id = PIPE_A; > @@ -65,7 +66,7 @@ static void test_init(data_t *data) > > igt_display_reset(display); > > - mall_capable = igt_amd_is_mall_capable(data->fd); > + igt_amd_get_mall_status(data->fd, &mall_capable, &mall_en); > igt_require_f(mall_capable, "Requires hardware that supports MALL cache\n"); > > /* find a connected output */ > @@ -101,44 +102,26 @@ static void test_fini(data_t *data) > igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, 0); > } > > -static bool check_cmd_output(const char *line, void *data) > -{ > - struct line_check *check = data; > - > - if (strstr(line, check->substr)) { > - check->found++; > - } > - > - return false; > -} > static void test_mall_ss(data_t *data) > { > igt_display_t *display = &data->display; > igt_fb_t rfb; > - int exec_ret; > - struct line_check line = {0}; > igt_crc_t test_crc, ref_crc; > + bool mall_supp, mall_en; > > test_init(data); > > igt_create_pattern_fb(data->fd, data->w, data->h, DRM_FORMAT_XRGB8888, 0, &rfb); > igt_plane_set_fb(data->primary, &rfb); > igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > - > igt_pipe_crc_collect_crc(data->pipe_crc, &ref_crc); > - sleep(MALL_SETTLE_DELAY); > - > - igt_system_cmd(exec_ret, "umr -O bits -r *.*.HUBP0_HUBP_MALL_STATUS | grep MALL_IN_USE"); > - > - igt_skip_on_f(exec_ret != IGT_EXIT_SUCCESS, "Error running UMR\n"); > > - line.substr = "1 (0x00000001)"; > - igt_log_buffer_inspect(check_cmd_output, &line); > + sleep(MALL_SETTLE_DELAY); > > - igt_assert_eq(line.found, 1); > + igt_amd_get_mall_status(data->fd, &mall_supp, &mall_en); > + igt_fail_on_f(!(mall_supp && mall_en), "MALL did not get enabled\n"); I'm not sure if I misunderstood something, but does it make sense to fail if the device does not have MALL support? How about skipping if the device does not support MALL? Thanks Siqueira > > igt_pipe_crc_collect_crc(data->pipe_crc, &test_crc); > - > igt_assert_crc_equal(&ref_crc, &test_crc); > > igt_remove_fb(data->fd, &rfb); ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH v2 3/3] lib/amdgpu: checkpatch.pl fixes 2023-08-25 13:50 [igt-dev] [PATCH v2 1/3] tests/amdgpu/amd_mall: Add crc check Aurabindo Pillai 2023-08-25 13:50 ` [igt-dev] [PATCH v2 2/3] tests/amdgpu/amd_mall: remove UMR dependency Aurabindo Pillai @ 2023-08-25 13:50 ` Aurabindo Pillai 2023-08-29 14:37 ` Rodrigo Siqueira Jordao 2023-08-25 14:35 ` [igt-dev] ✓ CI.xeBAT: success for series starting with [v2,1/3] tests/amdgpu/amd_mall: Add crc check Patchwork ` (4 subsequent siblings) 6 siblings, 1 reply; 10+ messages in thread From: Aurabindo Pillai @ 2023-08-25 13:50 UTC (permalink / raw) To: igt-dev; +Cc: hersenxs.wu fix checkpatch.pl identified issue: typo and braces Signed-off-by: Aurabindo Pillai <aurabindo.pillai@amd.com> --- lib/igt_amd.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/igt_amd.c b/lib/igt_amd.c index b67cc9be0..84c6d7545 100644 --- a/lib/igt_amd.c +++ b/lib/igt_amd.c @@ -1154,7 +1154,8 @@ void igt_amd_allow_edp_hotplug_detect(int drm_fd, char *connector_name, bool ena close(hpd_fd); } -static bool get_dm_capabilites(int drm_fd, char *buf, size_t size) { +static bool get_dm_capabilities(int drm_fd, char *buf, size_t size) +{ int ret, fd; bool has_capablities = amd_has_debugfs(drm_fd, DEBUGFS_DM_CAPABILITIES); @@ -1183,7 +1184,7 @@ static bool get_dm_capabilites(int drm_fd, char *buf, size_t size) { * * @param drm_fd DRM file descriptor * @return true if dm capabilities interface exists and MALL is supported - * @return false if capabilites could not be read. + * @return false if capabilities could not be read. */ void igt_amd_get_mall_status(int drm_fd, bool *supported, bool *enabled) { @@ -1193,7 +1194,7 @@ void igt_amd_get_mall_status(int drm_fd, bool *supported, bool *enabled) *supported = false; *enabled = false; - if (!get_dm_capabilites(drm_fd, buf, 1024)) + if (!get_dm_capabilities(drm_fd, buf, 1024)) return; mall_loc = strstr(buf, "mall supported: yes"); -- 2.41.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH v2 3/3] lib/amdgpu: checkpatch.pl fixes 2023-08-25 13:50 ` [igt-dev] [PATCH v2 3/3] lib/amdgpu: checkpatch.pl fixes Aurabindo Pillai @ 2023-08-29 14:37 ` Rodrigo Siqueira Jordao 0 siblings, 0 replies; 10+ messages in thread From: Rodrigo Siqueira Jordao @ 2023-08-29 14:37 UTC (permalink / raw) To: Aurabindo Pillai, igt-dev; +Cc: hersenxs.wu On 8/25/23 07:50, Aurabindo Pillai wrote: > fix checkpatch.pl identified issue: typo and braces > > Signed-off-by: Aurabindo Pillai <aurabindo.pillai@amd.com> > --- > lib/igt_amd.c | 7 ++++--- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git a/lib/igt_amd.c b/lib/igt_amd.c > index b67cc9be0..84c6d7545 100644 > --- a/lib/igt_amd.c > +++ b/lib/igt_amd.c > @@ -1154,7 +1154,8 @@ void igt_amd_allow_edp_hotplug_detect(int drm_fd, char *connector_name, bool ena > close(hpd_fd); > } > > -static bool get_dm_capabilites(int drm_fd, char *buf, size_t size) { > +static bool get_dm_capabilities(int drm_fd, char *buf, size_t size) > +{ > int ret, fd; > bool has_capablities = amd_has_debugfs(drm_fd, DEBUGFS_DM_CAPABILITIES); > > @@ -1183,7 +1184,7 @@ static bool get_dm_capabilites(int drm_fd, char *buf, size_t size) { > * > * @param drm_fd DRM file descriptor > * @return true if dm capabilities interface exists and MALL is supported > - * @return false if capabilites could not be read. > + * @return false if capabilities could not be read. > */ > void igt_amd_get_mall_status(int drm_fd, bool *supported, bool *enabled) > { > @@ -1193,7 +1194,7 @@ void igt_amd_get_mall_status(int drm_fd, bool *supported, bool *enabled) > *supported = false; > *enabled = false; > > - if (!get_dm_capabilites(drm_fd, buf, 1024)) > + if (!get_dm_capabilities(drm_fd, buf, 1024)) > return; > > mall_loc = strstr(buf, "mall supported: yes"); Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com> ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for series starting with [v2,1/3] tests/amdgpu/amd_mall: Add crc check 2023-08-25 13:50 [igt-dev] [PATCH v2 1/3] tests/amdgpu/amd_mall: Add crc check Aurabindo Pillai 2023-08-25 13:50 ` [igt-dev] [PATCH v2 2/3] tests/amdgpu/amd_mall: remove UMR dependency Aurabindo Pillai 2023-08-25 13:50 ` [igt-dev] [PATCH v2 3/3] lib/amdgpu: checkpatch.pl fixes Aurabindo Pillai @ 2023-08-25 14:35 ` Patchwork 2023-08-25 14:50 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-08-25 14:35 UTC (permalink / raw) To: Aurabindo Pillai; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1281 bytes --] == Series Details == Series: series starting with [v2,1/3] tests/amdgpu/amd_mall: Add crc check URL : https://patchwork.freedesktop.org/series/122919/ State : success == Summary == CI Bug Log - changes from XEIGT_7453_BAT -> XEIGTPW_9662_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (3 -> 3) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9662_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - bat-adlp-7: [FAIL][1] ([Intel XE#400]) -> [PASS][2] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7453/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9662/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html [Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400 Build changes ------------- * IGT: IGT_7453 -> IGTPW_9662 IGTPW_9662: 9662 IGT_7453: 7453 xe-340-c77796cf84361b4716839141f2e48de2bf7f4bd5: c77796cf84361b4716839141f2e48de2bf7f4bd5 [-- Attachment #2: Type: text/html, Size: 1751 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [v2,1/3] tests/amdgpu/amd_mall: Add crc check 2023-08-25 13:50 [igt-dev] [PATCH v2 1/3] tests/amdgpu/amd_mall: Add crc check Aurabindo Pillai ` (2 preceding siblings ...) 2023-08-25 14:35 ` [igt-dev] ✓ CI.xeBAT: success for series starting with [v2,1/3] tests/amdgpu/amd_mall: Add crc check Patchwork @ 2023-08-25 14:50 ` Patchwork 2023-08-26 5:33 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-08-25 14:50 UTC (permalink / raw) To: Aurabindo Pillai; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4329 bytes --] == Series Details == Series: series starting with [v2,1/3] tests/amdgpu/amd_mall: Add crc check URL : https://patchwork.freedesktop.org/series/122919/ State : success == Summary == CI Bug Log - changes from CI_DRM_13568 -> IGTPW_9662 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/index.html Participating hosts (40 -> 40) ------------------------------ Additional (1): fi-kbl-soraka Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9662 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@smem: - bat-dg2-9: [PASS][1] -> [INCOMPLETE][2] ([i915#6311]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.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_9662/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 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_heartbeat: - fi-cfl-8109u: [PASS][5] -> [DMESG-FAIL][6] ([i915#5334]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/fi-cfl-8109u/igt@i915_selftest@live@gt_heartbeat.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/fi-cfl-8109u/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][7] ([i915#1886] / [i915#7913]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][8] ([fdo#109271]) +8 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_psr@primary_page_flip: - bat-rplp-1: NOTRUN -> [ABORT][9] ([i915#8442] / [i915#8668] / [i915#8860]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/bat-rplp-1/igt@kms_psr@primary_page_flip.html #### Possible fixes #### * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][10] ([i915#8442] / [i915#8668]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8860]: https://gitlab.freedesktop.org/drm/intel/issues/8860 [i915#8879]: https://gitlab.freedesktop.org/drm/intel/issues/8879 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7453 -> IGTPW_9662 CI-20190529: 20190529 CI_DRM_13568: f8b90de70ee92dbdebc6f2078e2edd12756d7a63 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9662: 9662 IGT_7453: 7453 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/index.html [-- Attachment #2: Type: text/html, Size: 5246 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [v2,1/3] tests/amdgpu/amd_mall: Add crc check 2023-08-25 13:50 [igt-dev] [PATCH v2 1/3] tests/amdgpu/amd_mall: Add crc check Aurabindo Pillai ` (3 preceding siblings ...) 2023-08-25 14:50 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-08-26 5:33 ` Patchwork 2023-08-29 14:27 ` [igt-dev] [PATCH v2 1/3] " Rodrigo Siqueira Jordao 2023-08-29 14:28 ` Rodrigo Siqueira Jordao 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-08-26 5:33 UTC (permalink / raw) To: Aurabindo Pillai; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 82621 bytes --] == Series Details == Series: series starting with [v2,1/3] tests/amdgpu/amd_mall: Add crc check URL : https://patchwork.freedesktop.org/series/122919/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13568_full -> IGTPW_9662_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9662_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9662_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9662_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_schedule@noreorder-corked@bcs0: - shard-mtlp: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-1/igt@gem_exec_schedule@noreorder-corked@bcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-4/igt@gem_exec_schedule@noreorder-corked@bcs0.html * igt@i915_pm_rpm@system-suspend-modeset: - shard-dg2: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg2-10/igt@i915_pm_rpm@system-suspend-modeset.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-10/igt@i915_pm_rpm@system-suspend-modeset.html New tests --------- New tests have been introduced between CI_DRM_13568_full and IGTPW_9662_full: ### New IGT tests (40) ### * igt@kms_flip@basic-flip-vs-dpms@a-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@basic-flip-vs-dpms@b-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@bo-too-big-interruptible@a-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@bo-too-big-interruptible@b-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@bo-too-big-interruptible@c-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@bo-too-big@a-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@bo-too-big@b-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@bo-too-big@c-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@dpms-off-confusion@a-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@dpms-off-confusion@b-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@dpms-off-confusion@c-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@dpms-vs-vblank-race-interruptible@a-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@dpms-vs-vblank-race-interruptible@b-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@dpms-vs-vblank-race-interruptible@c-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@flip-vs-wf_vblank-interruptible@a-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@flip-vs-wf_vblank-interruptible@b-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@nonexisting-fb@a-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@nonexisting-fb@b-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@nonexisting-fb@c-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-vsync-start@hdmi-a-3-pipe-a: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-vsync-start@hdmi-a-3-pipe-b: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-vsync-start@hdmi-a-3-pipe-c: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-vsync-start@hdmi-a-3-pipe-d: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@int-max-clock@hdmi-a-3-pipe-a: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@int-max-clock@hdmi-a-3-pipe-b: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@int-max-clock@hdmi-a-3-pipe-c: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@int-max-clock@hdmi-a-3-pipe-d: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@zero-vdisplay@hdmi-a-3-pipe-a: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@zero-vdisplay@hdmi-a-3-pipe-b: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@zero-vdisplay@hdmi-a-3-pipe-c: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@zero-vdisplay@hdmi-a-3-pipe-d: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_rmfb@close-fd@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9662_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-8/igt@api_intel_bb@blit-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411]) +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-2/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#7701]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-3/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: NOTRUN -> [FAIL][8] ([i915#7742]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@virtual-busy-all: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-7/igt@drm_fdinfo@virtual-busy-all.html * igt@drm_mm@drm_mm_test: - shard-snb: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#8661]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-snb5/igt@drm_mm@drm_mm_test.html - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8661]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-3/igt@drm_mm@drm_mm_test.html * igt@feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#658]) +5 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-2/igt@feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][13] ([i915#658]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-4/igt@feature_discovery@psr1.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#4873]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-7/igt@gem_caching@writes.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][15] -> [INCOMPLETE][16] ([i915#6311] / [i915#7297]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg2-8/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-12/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-7/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][18] ([i915#7461]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#8562]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-1/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#1099]) +3 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-snb4/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_eio@in-flight-10ms: - shard-mtlp: NOTRUN -> [ABORT][22] ([i915#8503]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-3/igt@gem_eio@in-flight-10ms.html * igt@gem_eio@in-flight-1us: - shard-mtlp: [PASS][23] -> [ABORT][24] ([i915#8503]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-7/igt@gem_eio@in-flight-1us.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-1/igt@gem_eio@in-flight-1us.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4771]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-6/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4771]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-1/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#6334]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#6344]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-1/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@pi@rcs0: - shard-mtlp: [PASS][30] -> [FAIL][31] ([i915#4475]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-5/igt@gem_exec_capture@pi@rcs0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-7/igt@gem_exec_capture@pi@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-rkl: [PASS][32] -> [FAIL][33] ([i915#2842]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-rkl-1/igt@gem_exec_fair@basic-none-share@rcs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-6/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-6/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4473] / [i915#4771]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-4/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +4 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-6/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3281]) +3 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-10/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-write-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-3/igt@gem_exec_reloc@basic-write-cpu-noreloc.html * igt@gem_exec_schedule@noreorder-corked@rcs0: - shard-mtlp: [PASS][40] -> [DMESG-FAIL][41] ([i915#9121]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-1/igt@gem_exec_schedule@noreorder-corked@rcs0.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-4/igt@gem_exec_schedule@noreorder-corked@rcs0.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860]) +3 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-5/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#2190]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-2/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-random: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4613]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-2/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@massive-random: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#4613]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-1/igt@gem_lmem_swapping@massive-random.html - shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-7/igt@gem_lmem_swapping@massive-random.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4077]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-13/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4077]) +6 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4077]) +9 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-10/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4083]) +4 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-11/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@fault-concurrent: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4083]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-1/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_partial_pwrite_pread@write-display: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3282]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-1/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_pread@snoop: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3282]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-17/igt@gem_pread@snoop.html - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3282]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-4/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-context-2: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4270]) +2 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-12/igt@gem_pxp@create-regular-context-2.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#3282]) +2 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-1/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#8428]) +3 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-7/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4079]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-11/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#3297] / [i915#4880]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [PASS][60] -> [FAIL][61] ([i915#6268]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-3/igt@gem_userptr_blits@nohangcheck.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-3/igt@gem_userptr_blits@nohangcheck.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#3297]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-6/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#3297]) +1 similar issue [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-3/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3297]) +1 similar issue [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@vma-merge: - shard-mtlp: NOTRUN -> [FAIL][65] ([i915#3318]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-4/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_mixed_blits: - shard-mtlp: NOTRUN -> [SKIP][66] ([fdo#109289]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-4/igt@gen3_render_mixed_blits.html * igt@gen7_exec_parse@basic-offset: - shard-dg2: NOTRUN -> [SKIP][67] ([fdo#109289]) +3 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-11/igt@gen7_exec_parse@basic-offset.html - shard-rkl: NOTRUN -> [SKIP][68] ([fdo#109289]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-6/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#2856]) +2 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#2527]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-15/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#2856]) +3 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-8/igt@gen9_exec_parse@bb-start-param.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: [PASS][72] -> [FAIL][73] ([i915#8456]) +2 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-3/igt@i915_hangman@detector@vcs0.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-3/igt@i915_hangman@detector@vcs0.html * igt@i915_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][74] ([i915#3546] / [i915#7561]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-7/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_backlight@fade-with-suspend: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#5354] / [i915#7561]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-1/igt@i915_pm_backlight@fade-with-suspend.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#6590]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-2/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8403]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: [PASS][78] -> [FAIL][79] ([i915#8230]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg2-8/igt@i915_pm_rc6_residency@rc6-accuracy.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-11/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-dg1: [PASS][80] -> [FAIL][81] ([i915#3591]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [PASS][82] -> [SKIP][83] ([i915#1397]) +2 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg1-16/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#1397]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-1/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][85] -> [SKIP][86] ([i915#1397]) +1 similar issue [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg2-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress.html - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#1397]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-3/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@system-suspend-modeset: - shard-apl: [PASS][88] -> [ABORT][89] ([i915#180]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-apl2/igt@i915_pm_rpm@system-suspend-modeset.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-apl7/igt@i915_pm_rpm@system-suspend-modeset.html * igt@i915_query@test-query-geometry-subslices: - shard-mtlp: [PASS][90] -> [DMESG-WARN][91] ([i915#2017]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-8/igt@i915_query@test-query-geometry-subslices.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-snb: NOTRUN -> [DMESG-WARN][92] ([i915#8841]) +4 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-snb6/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_addfb_basic@clobberred-modifier: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#4212]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-3/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#8502]) +11 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs.html * igt@kms_async_flips@crc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [FAIL][95] ([i915#8247]) +3 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#1769] / [i915#3555]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#5286]) +1 similar issue [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][98] -> [FAIL][99] ([i915#5138]) +1 similar issue [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][100] ([fdo#111614]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][101] ([fdo#111615] / [i915#5286]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [FAIL][102] ([i915#5138]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][103] ([fdo#111614]) +2 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-rkl: NOTRUN -> [SKIP][104] ([fdo#111614] / [i915#3638]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-mtlp: [PASS][105] -> [FAIL][106] ([i915#3743]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6187]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][108] ([fdo#111615]) +2 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#5190]) +7 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5190]) +4 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][111] ([fdo#110723]) +2 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html - shard-tglu: NOTRUN -> [SKIP][112] ([fdo#111615]) +1 similar issue [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-3/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#6095]) +17 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#3689] / [i915#5354] / [i915#6095]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-19/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#3734] / [i915#5354] / [i915#6095]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-1/igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#5354] / [i915#6095]) +6 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-1/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#3886] / [i915#6095]) +5 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][119] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-8/igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-6/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#3689] / [i915#5354]) +11 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-11/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#3689] / [i915#3886] / [i915#5354]) +1 similar issue [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-5/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-aux-stride-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#5354] / [i915#6095]) +7 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-5/igt@kms_ccs@pipe-d-bad-aux-stride-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#5354]) +9 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-1/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#7213]) +3 similar issues [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#4087]) +3 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4087]) +3 similar issues [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][128] ([fdo#111827]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-5/igt@kms_chamelium_color@ctm-green-to-red.html - shard-rkl: NOTRUN -> [SKIP][129] ([fdo#111827]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-1/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#7828]) +8 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-3/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#7828]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-9/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#7828]) +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#7828]) +1 similar issue [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-1/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3299]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#7118]) +1 similar issue [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-3/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#3359]) +2 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#8814]) +3 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#3555]) +2 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#3555]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-9/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg1: NOTRUN -> [SKIP][140] ([fdo#111767] / [fdo#111825]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-17/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html - shard-mtlp: NOTRUN -> [SKIP][141] ([fdo#111767] / [i915#3546]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][142] ([fdo#109274] / [i915#5354]) +2 similar issues [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-3/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#3546]) +3 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-rkl: NOTRUN -> [SKIP][144] ([fdo#111825]) +4 similar issues [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][145] -> [FAIL][146] ([i915#2346]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][147] -> [FAIL][148] ([i915#2346]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#4103] / [i915#4213]) +1 similar issue [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dsc@dsc-with-formats: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3840]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-3/igt@kms_dsc@dsc-with-formats.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-tglu: NOTRUN -> [SKIP][151] ([fdo#109274] / [i915#3637]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-7/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-mtlp: NOTRUN -> [SKIP][152] ([fdo#111767] / [i915#3637]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][153] ([fdo#109274]) +6 similar issues [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-dg2: NOTRUN -> [SKIP][154] ([fdo#109274] / [fdo#111767]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-snb: NOTRUN -> [SKIP][155] ([fdo#109271] / [fdo#111767]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-snb4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3637]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-8/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#8381]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-8/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#2672]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#2672]) +3 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][160] ([i915#2672]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#8810]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [PASS][162] -> [FAIL][163] ([i915#6880]) +1 similar issue [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#8708]) +8 similar issues [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#5354]) +42 similar issues [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html - shard-rkl: NOTRUN -> [SKIP][166] ([fdo#111825] / [i915#1825]) +13 similar issues [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-mtlp: NOTRUN -> [DMESG-WARN][167] ([i915#1982]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#3023]) +5 similar issues [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#8708]) +5 similar issues [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][170] ([fdo#109280]) +4 similar issues [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#5439]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#5460]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render: - shard-mtlp: [PASS][173] -> [DMESG-WARN][174] ([i915#1982]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3458]) +10 similar issues [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#1825]) +10 similar issues [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8228]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#8228]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-7/igt@kms_hdr@static-swap.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#8821]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-3/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#8821]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-6/igt@kms_plane_lowres@tiling-yf.html - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555]) +1 similar issue [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-4/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][182] ([i915#8292]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#5176]) +5 similar issues [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#5176]) +3 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#5176]) +23 similar issues [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-15/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#5235]) +19 similar issues [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][187] ([fdo#109271]) +268 similar issues [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-snb2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#5235]) +3 similar issues [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#5235]) +7 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#5235]) +3 similar issues [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#4348]) +1 similar issue [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-2/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_cursor_mmap_gtt: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#1072]) +2 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-2/igt@kms_psr@psr2_cursor_mmap_gtt.html * igt@kms_psr@psr2_sprite_plane_onoff: - shard-tglu: NOTRUN -> [SKIP][193] ([fdo#110189]) +5 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-9/igt@kms_psr@psr2_sprite_plane_onoff.html * igt@kms_psr@sprite_blt: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#1072]) +7 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-5/igt@kms_psr@sprite_blt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#5461] / [i915#658]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#4235]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][197] ([fdo#111615] / [i915#5289]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_selftest@drm_plane: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#8661]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-3/igt@kms_selftest@drm_plane.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#4098]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-4/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][200] ([fdo#109309]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-4/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-d-query-idle-hang: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#4070] / [i915#533] / [i915#6768]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-2/igt@kms_vblank@pipe-d-query-idle-hang.html * igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend: - shard-mtlp: [PASS][202] -> [ABORT][203] ([i915#6311] / [i915#8466]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-2/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-8/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#2436]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-12/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@mi-rpc: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#2434]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-4/igt@perf@mi-rpc.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][206] ([i915#6806]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-10/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#8516]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-12/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [INCOMPLETE][208] ([i915#5493]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_udl: - shard-dg2: NOTRUN -> [SKIP][209] ([fdo#109291]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-3/igt@prime_udl.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#2575]) +3 similar issues [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-perfmon: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#2575]) +7 similar issues [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-6/igt@v3d/v3d_submit_cl@bad-perfmon.html - shard-rkl: NOTRUN -> [SKIP][212] ([fdo#109315]) +3 similar issues [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-4/igt@v3d/v3d_submit_cl@bad-perfmon.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-tglu: NOTRUN -> [SKIP][213] ([fdo#109315] / [i915#2575]) +2 similar issues [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-2/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@vc4/vc4_mmap@mmap-bo: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#7711]) +3 similar issues [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-1/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_perfmon@destroy-valid-perfmon: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#7711]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-14/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html * igt@vc4/vc4_perfmon@get-values-valid-perfmon: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#2575]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-5/igt@vc4/vc4_perfmon@get-values-valid-perfmon.html * igt@vc4/vc4_purgeable_bo@mark-purgeable-twice: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#7711]) +2 similar issues [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-6/igt@vc4/vc4_purgeable_bo@mark-purgeable-twice.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#7711]) +6 similar issues [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-3/igt@vc4/vc4_tiling@get-bad-handle.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][219] ([i915#7742]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][221] ([i915#6268]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [FAIL][223] ([i915#2410]) -> [PASS][224] +2 similar issues [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-5/igt@gem_ctx_persistence@engines-hostile@vcs0.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-8/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_eio@in-flight-suspend: - shard-mtlp: [FAIL][225] ([i915#6121] / [i915#7052]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-5/igt@gem_eio@in-flight-suspend.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@kms: - shard-dg2: [INCOMPLETE][227] ([i915#7892]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg2-2/igt@gem_eio@kms.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-2/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][229] ([i915#5784]) -> [PASS][230] +1 similar issue [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg1-15/igt@gem_eio@unwedge-stress.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-13/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][231] ([i915#2846]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglu: [FAIL][233] ([i915#2842]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-tglu-2/igt@gem_exec_fair@basic-flow@rcs0.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-4/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][235] ([i915#2842]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [INCOMPLETE][237] ([i915#6311]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-3/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_hangman@engine-engine-hang@vcs0: - shard-mtlp: [FAIL][239] ([i915#7069]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-1/igt@i915_hangman@engine-engine-hang@vcs0.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-6/igt@i915_hangman@engine-engine-hang@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][241] ([i915#7061] / [i915#8617]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg2-12/igt@i915_module_load@reload-with-fault-injection.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [FAIL][243] ([i915#3591]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][245] ([i915#1397]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-rkl-1/igt@i915_pm_rpm@dpms-lpsp.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [SKIP][247] ([i915#1397]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg2-8/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-dg1: [SKIP][249] ([i915#1397]) -> [PASS][250] +1 similar issue [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-18/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_selftest@live@requests: - shard-mtlp: [ABORT][251] ([i915#7920] / [i915#7982]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-6/igt@i915_selftest@live@requests.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-7/igt@i915_selftest@live@requests.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][253] ([i915#5138]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: [FAIL][255] ([i915#3743]) -> [PASS][256] +4 similar issues [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][257] ([i915#2346]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][259] ([i915#2346]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-mtlp: [FAIL][261] ([fdo#103375]) -> [PASS][262] +2 similar issues [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-5/igt@kms_fbcon_fbt@fbc-suspend.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-dg2: [FAIL][263] ([i915#6880]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2: [FAIL][265] ([fdo#103375]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-suspend.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][267] ([i915#7484]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@all-busy-idle-check-all: - shard-mtlp: [FAIL][269] ([i915#5234]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-7/igt@perf_pmu@all-busy-idle-check-all.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@rc6@runtime-pm-long-gt1: - shard-mtlp: [SKIP][271] ([i915#8537]) -> [PASS][272] +2 similar issues [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-4/igt@perf_pmu@rc6@runtime-pm-long-gt1.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-1/igt@perf_pmu@rc6@runtime-pm-long-gt1.html * igt@perf_pmu@render-node-busy-idle@ccs0: - shard-mtlp: [FAIL][273] ([i915#4349]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-3/igt@perf_pmu@render-node-busy-idle@ccs0.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-2/igt@perf_pmu@render-node-busy-idle@ccs0.html * igt@sysfs_heartbeat_interval@precise@vecs0: - shard-mtlp: [FAIL][275] ([i915#8332]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-7/igt@sysfs_heartbeat_interval@precise@vecs0.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-8/igt@sysfs_heartbeat_interval@precise@vecs0.html * igt@sysfs_preempt_timeout@timeout@vecs0: - shard-mtlp: [ABORT][277] ([i915#8521] / [i915#8865]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-2/igt@sysfs_preempt_timeout@timeout@vecs0.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-5/igt@sysfs_preempt_timeout@timeout@vecs0.html #### Warnings #### * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][279] ([fdo#103375]) -> [INCOMPLETE][280] ([i915#4817]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_async_flips@crc@pipe-a-edp-1: - shard-mtlp: [DMESG-FAIL][281] ([i915#8561]) -> [DMESG-FAIL][282] ([i915#1982] / [i915#8561]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-8/igt@kms_async_flips@crc@pipe-a-edp-1.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-8/igt@kms_async_flips@crc@pipe-a-edp-1.html * igt@kms_content_protection@mei_interface: - shard-rkl: [SKIP][283] ([i915#7118]) -> [SKIP][284] ([fdo#109300]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-rkl-4/igt@kms_content_protection@mei_interface.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-2/igt@kms_content_protection@mei_interface.html - shard-dg1: [SKIP][285] ([i915#7116]) -> [SKIP][286] ([fdo#109300]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg1-15/igt@kms_content_protection@mei_interface.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-19/igt@kms_content_protection@mei_interface.html - shard-tglu: [SKIP][287] ([i915#6944] / [i915#7116] / [i915#7118]) -> [SKIP][288] ([fdo#109300]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-tglu-8/igt@kms_content_protection@mei_interface.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-tglu-10/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_crc@cursor-suspend@pipe-b-vga-1: - shard-snb: [DMESG-WARN][289] ([i915#8841]) -> [INCOMPLETE][290] ([i915#7882]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-snb4/igt@kms_cursor_crc@cursor-suspend@pipe-b-vga-1.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-snb7/igt@kms_cursor_crc@cursor-suspend@pipe-b-vga-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][291] ([i915#1982] / [i915#2017] / [i915#5954]) -> [FAIL][292] ([i915#2346]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][293] ([fdo#110189] / [i915#3955]) -> [SKIP][294] ([i915#3955]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-rkl-2/igt@kms_fbcon_fbt@psr.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-7/igt@kms_fbcon_fbt@psr.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][295] ([fdo#109285]) -> [SKIP][296] ([fdo#109285] / [i915#4098]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@primary_page_flip: - shard-dg1: [SKIP][297] ([i915#1072]) -> [SKIP][298] ([i915#1072] / [i915#4078]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg1-15/igt@kms_psr@primary_page_flip.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-18/igt@kms_psr@primary_page_flip.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][299] ([i915#1072] / [i915#4078]) -> [SKIP][300] ([i915#1072]) +1 similar issue [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13568/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html [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#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [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#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 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [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#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [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#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [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#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [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#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [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#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [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#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [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#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [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#7882]: https://gitlab.freedesktop.org/drm/intel/issues/7882 [i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8230]: https://gitlab.freedesktop.org/drm/intel/issues/8230 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [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#8466]: https://gitlab.freedesktop.org/drm/intel/issues/8466 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8537]: https://gitlab.freedesktop.org/drm/intel/issues/8537 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [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#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7453 -> IGTPW_9662 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13568: f8b90de70ee92dbdebc6f2078e2edd12756d7a63 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9662: 9662 IGT_7453: 7453 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9662/index.html [-- Attachment #2: Type: text/html, Size: 99978 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH v2 1/3] tests/amdgpu/amd_mall: Add crc check 2023-08-25 13:50 [igt-dev] [PATCH v2 1/3] tests/amdgpu/amd_mall: Add crc check Aurabindo Pillai ` (4 preceding siblings ...) 2023-08-26 5:33 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-08-29 14:27 ` Rodrigo Siqueira Jordao 2023-08-29 14:28 ` Rodrigo Siqueira Jordao 6 siblings, 0 replies; 10+ messages in thread From: Rodrigo Siqueira Jordao @ 2023-08-29 14:27 UTC (permalink / raw) To: Aurabindo Pillai, igt-dev; +Cc: hersenxs.wu On 8/25/23 07:50, Aurabindo Pillai wrote: > In addition to checking whether display scanout from MALL cache is > triggered, double check that the same pattern is being displayed. This > can detect any corruption due to incorrect MALL size calculations > > Signed-off-by: Aurabindo Pillai <aurabindo.pillai@amd.com> > --- > tests/amdgpu/amd_mall.c | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/tests/amdgpu/amd_mall.c b/tests/amdgpu/amd_mall.c > index c50d046ee..6016d5e8c 100644 > --- a/tests/amdgpu/amd_mall.c > +++ b/tests/amdgpu/amd_mall.c > @@ -117,6 +117,7 @@ static void test_mall_ss(data_t *data) > igt_fb_t rfb; > int exec_ret; > struct line_check line = {0}; > + igt_crc_t test_crc, ref_crc; > > test_init(data); > > @@ -124,6 +125,7 @@ static void test_mall_ss(data_t *data) > igt_plane_set_fb(data->primary, &rfb); > igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > > + igt_pipe_crc_collect_crc(data->pipe_crc, &ref_crc); > sleep(MALL_SETTLE_DELAY); > > igt_system_cmd(exec_ret, "umr -O bits -r *.*.HUBP0_HUBP_MALL_STATUS | grep MALL_IN_USE"); > @@ -135,6 +137,10 @@ static void test_mall_ss(data_t *data) > > igt_assert_eq(line.found, 1); > > + igt_pipe_crc_collect_crc(data->pipe_crc, &test_crc); > + > + igt_assert_crc_equal(&ref_crc, &test_crc); > + > igt_remove_fb(data->fd, &rfb); > test_fini(data); > } Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com> ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH v2 1/3] tests/amdgpu/amd_mall: Add crc check 2023-08-25 13:50 [igt-dev] [PATCH v2 1/3] tests/amdgpu/amd_mall: Add crc check Aurabindo Pillai ` (5 preceding siblings ...) 2023-08-29 14:27 ` [igt-dev] [PATCH v2 1/3] " Rodrigo Siqueira Jordao @ 2023-08-29 14:28 ` Rodrigo Siqueira Jordao 6 siblings, 0 replies; 10+ messages in thread From: Rodrigo Siqueira Jordao @ 2023-08-29 14:28 UTC (permalink / raw) To: Aurabindo Pillai, igt-dev; +Cc: hersenxs.wu On 8/25/23 07:50, Aurabindo Pillai wrote: > In addition to checking whether display scanout from MALL cache is > triggered, double check that the same pattern is being displayed. This > can detect any corruption due to incorrect MALL size calculations > > Signed-off-by: Aurabindo Pillai <aurabindo.pillai@amd.com> > --- > tests/amdgpu/amd_mall.c | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/tests/amdgpu/amd_mall.c b/tests/amdgpu/amd_mall.c > index c50d046ee..6016d5e8c 100644 > --- a/tests/amdgpu/amd_mall.c > +++ b/tests/amdgpu/amd_mall.c > @@ -117,6 +117,7 @@ static void test_mall_ss(data_t *data) > igt_fb_t rfb; > int exec_ret; > struct line_check line = {0}; > + igt_crc_t test_crc, ref_crc; > > test_init(data); > > @@ -124,6 +125,7 @@ static void test_mall_ss(data_t *data) > igt_plane_set_fb(data->primary, &rfb); > igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > > + igt_pipe_crc_collect_crc(data->pipe_crc, &ref_crc); > sleep(MALL_SETTLE_DELAY); > > igt_system_cmd(exec_ret, "umr -O bits -r *.*.HUBP0_HUBP_MALL_STATUS | grep MALL_IN_USE"); > @@ -135,6 +137,10 @@ static void test_mall_ss(data_t *data) > > igt_assert_eq(line.found, 1); > > + igt_pipe_crc_collect_crc(data->pipe_crc, &test_crc); > + > + igt_assert_crc_equal(&ref_crc, &test_crc); > + > igt_remove_fb(data->fd, &rfb); > test_fini(data); > } Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com> ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-08-29 14:37 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-25 13:50 [igt-dev] [PATCH v2 1/3] tests/amdgpu/amd_mall: Add crc check Aurabindo Pillai 2023-08-25 13:50 ` [igt-dev] [PATCH v2 2/3] tests/amdgpu/amd_mall: remove UMR dependency Aurabindo Pillai 2023-08-29 14:36 ` Rodrigo Siqueira Jordao 2023-08-25 13:50 ` [igt-dev] [PATCH v2 3/3] lib/amdgpu: checkpatch.pl fixes Aurabindo Pillai 2023-08-29 14:37 ` Rodrigo Siqueira Jordao 2023-08-25 14:35 ` [igt-dev] ✓ CI.xeBAT: success for series starting with [v2,1/3] tests/amdgpu/amd_mall: Add crc check Patchwork 2023-08-25 14:50 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-08-26 5:33 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-08-29 14:27 ` [igt-dev] [PATCH v2 1/3] " Rodrigo Siqueira Jordao 2023-08-29 14:28 ` Rodrigo Siqueira Jordao
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox