* [igt-dev] [PATCH i-g-t 0/5] Misc. dsc updates
@ 2023-06-27 11:32 Swati Sharma
2023-06-27 11:32 ` [igt-dev] [PATCH i-g-t 1/5] tests/i915/kms_dsc: add new test flag Swati Sharma
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Swati Sharma @ 2023-06-27 11:32 UTC (permalink / raw)
To: igt-dev
Misc. dsc changes are incorporated in this series.
Swati Sharma (5):
tests/i915/kms_dsc: add new test flag
tests/i915/kms_dsc: use uint32_t test flag
tests/i915/kms_dsc: use #define for default bpc
tests/i915/kms_dsc: add get_status()
tests/i915/kms_dsc: add subtest
tests/i915/kms_dsc.c | 78 ++++++++++++++++++++++++++++++--------------
1 file changed, 54 insertions(+), 24 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [igt-dev] [PATCH i-g-t 1/5] tests/i915/kms_dsc: add new test flag 2023-06-27 11:32 [igt-dev] [PATCH i-g-t 0/5] Misc. dsc updates Swati Sharma @ 2023-06-27 11:32 ` Swati Sharma 2023-06-27 11:32 ` [igt-dev] [PATCH i-g-t 2/5] tests/i915/kms_dsc: use uint32_t " Swati Sharma ` (5 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Swati Sharma @ 2023-06-27 11:32 UTC (permalink / raw) To: igt-dev Add new test flag TEST_DSC_FORMAT. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/i915/kms_dsc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c index c07078068..c033a2ff0 100644 --- a/tests/i915/kms_dsc.c +++ b/tests/i915/kms_dsc.c @@ -37,6 +37,7 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); enum dsc_test_type { TEST_DSC_BASIC, TEST_DSC_BPC, + TEST_DSC_FORMAT, TEST_DSC_OUTPUT_FORMAT, }; @@ -302,7 +303,7 @@ igt_main_args("l", NULL, help_str, opt_handler, &data) "with default parameters and creating fb with diff formats"); igt_subtest_with_dynamic("dsc-with-formats") { for (int k = 0; k < ARRAY_SIZE(format_list); k++) - test_dsc(&data, TEST_DSC_BASIC, 0, + test_dsc(&data, TEST_DSC_FORMAT, 0, format_list[k], DSC_FORMAT_RGB); } -- 2.25.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t 2/5] tests/i915/kms_dsc: use uint32_t test flag 2023-06-27 11:32 [igt-dev] [PATCH i-g-t 0/5] Misc. dsc updates Swati Sharma 2023-06-27 11:32 ` [igt-dev] [PATCH i-g-t 1/5] tests/i915/kms_dsc: add new test flag Swati Sharma @ 2023-06-27 11:32 ` Swati Sharma 2023-06-27 11:32 ` [igt-dev] [PATCH i-g-t 3/5] tests/i915/kms_dsc: use #define for default bpc Swati Sharma ` (4 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Swati Sharma @ 2023-06-27 11:32 UTC (permalink / raw) To: igt-dev Instead of using enum, use uinit32_t test flag. It is helpful, if we need to implement feature combination tests. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/i915/kms_dsc.c | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c index c033a2ff0..4b5e034bf 100644 --- a/tests/i915/kms_dsc.c +++ b/tests/i915/kms_dsc.c @@ -34,11 +34,11 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); -enum dsc_test_type { - TEST_DSC_BASIC, - TEST_DSC_BPC, - TEST_DSC_FORMAT, - TEST_DSC_OUTPUT_FORMAT, +enum { + TEST_DSC_BASIC = 1 << 0, + TEST_DSC_BPC = 1 << 1, + TEST_DSC_FORMAT = 1 << 2, + TEST_DSC_OUTPUT_FORMAT = 1 << 3, }; typedef struct { @@ -111,7 +111,7 @@ static void test_cleanup(data_t *data) } /* re-probe connectors and do a modeset with DSC */ -static void update_display(data_t *data, enum dsc_test_type test_type) +static void update_display(data_t *data, uint32_t test_type) { int ret; bool enabled; @@ -130,12 +130,12 @@ static void update_display(data_t *data, enum dsc_test_type test_type) save_force_dsc_en(data->drm_fd, data->output); force_dsc_enable(data->drm_fd, data->output); - if (test_type == TEST_DSC_BPC) { + if (test_type & TEST_DSC_BPC) { igt_debug("Trying to set input BPC to %d\n", data->input_bpc); force_dsc_enable_bpc(data->drm_fd, data->output, data->input_bpc); } - if (test_type == TEST_DSC_OUTPUT_FORMAT) { + if (test_type & TEST_DSC_OUTPUT_FORMAT) { igt_debug("Trying to set DSC %s output format\n", kmstest_dsc_output_format_str(data->output_format)); force_dsc_output_format(data->drm_fd, data->output, data->output_format); @@ -214,13 +214,14 @@ reset: igt_assert_eq(ret, 0); } -static void test_dsc(data_t *data, enum dsc_test_type test_type, int bpc, - unsigned int plane_format, enum dsc_output_format output_format) +static void test_dsc(data_t *data, uint32_t test_type, int bpc, + unsigned int plane_format, + enum dsc_output_format output_format) { igt_display_t *display = &data->display; igt_output_t *output; - char name[20]; enum pipe pipe; + char n1[20] = {0}, n2[20] = {0}, n3[20] = {0}; for_each_pipe_with_valid_output(display, pipe, output) { data->output_format = output_format; @@ -242,15 +243,14 @@ static void test_dsc(data_t *data, enum dsc_test_type test_type, int bpc, if (!check_gen11_bpc_constraint(data->drm_fd, data->output, data->input_bpc)) continue; - if (test_type == TEST_DSC_BPC) - snprintf(name, sizeof(name), "-%dbpc-%s", data->input_bpc, igt_format_str(data->plane_format)); - else if (test_type == TEST_DSC_OUTPUT_FORMAT) - snprintf(name, sizeof(name), "-%s-%s", kmstest_dsc_output_format_str(data->output_format), - igt_format_str(data->plane_format)); - else - snprintf(name, sizeof(name), "-%s", igt_format_str(data->plane_format)); + if (test_type & TEST_DSC_OUTPUT_FORMAT) + snprintf(n1, sizeof(n1), "-%s", kmstest_dsc_output_format_str(data->output_format)); + if (test_type & TEST_DSC_FORMAT) + snprintf(n2, sizeof(n2), "-%s", igt_format_str(data->plane_format)); + if (test_type & TEST_DSC_BPC) + snprintf(n3, sizeof(n3), "-%dbpc", data->input_bpc); - igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(data->pipe), data->output->name, name) + igt_dynamic_f("pipe-%s-%s%s%s%s", kmstest_pipe_name(data->pipe), data->output->name, n1, n2, n3) update_display(data, test_type); if (data->limited) @@ -322,7 +322,7 @@ igt_main_args("l", NULL, help_str, opt_handler, &data) igt_subtest_with_dynamic("dsc-with-bpc-formats") { for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) { for (int k = 0; k < ARRAY_SIZE(format_list); k++) { - test_dsc(&data, TEST_DSC_BPC, bpc_list[j], + test_dsc(&data, TEST_DSC_BPC | TEST_DSC_FORMAT, bpc_list[j], format_list[k], DSC_FORMAT_RGB); } } -- 2.25.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t 3/5] tests/i915/kms_dsc: use #define for default bpc 2023-06-27 11:32 [igt-dev] [PATCH i-g-t 0/5] Misc. dsc updates Swati Sharma 2023-06-27 11:32 ` [igt-dev] [PATCH i-g-t 1/5] tests/i915/kms_dsc: add new test flag Swati Sharma 2023-06-27 11:32 ` [igt-dev] [PATCH i-g-t 2/5] tests/i915/kms_dsc: use uint32_t " Swati Sharma @ 2023-06-27 11:32 ` Swati Sharma 2023-06-27 11:32 ` [igt-dev] [PATCH i-g-t 4/5] tests/i915/kms_dsc: add get_status() Swati Sharma ` (3 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Swati Sharma @ 2023-06-27 11:32 UTC (permalink / raw) To: igt-dev For default bpc, use #define. By setting bpc as 0, means driver will set its own value and we are not enforcing input bpc. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/i915/kms_dsc.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c index 4b5e034bf..84bd5dbbc 100644 --- a/tests/i915/kms_dsc.c +++ b/tests/i915/kms_dsc.c @@ -34,6 +34,8 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); +#define DEFAULT_BPC 0 + enum { TEST_DSC_BASIC = 1 << 0, TEST_DSC_BPC = 1 << 1, @@ -295,7 +297,7 @@ igt_main_args("l", NULL, help_str, opt_handler, &data) "by a connector by forcing DSC on all connectors that support it " "with default parameters"); igt_subtest_with_dynamic("dsc-basic") - test_dsc(&data, TEST_DSC_BASIC, 0, + test_dsc(&data, TEST_DSC_BASIC, DEFAULT_BPC, DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB); igt_describe("Tests basic display stream compression functionality if supported " @@ -303,7 +305,7 @@ igt_main_args("l", NULL, help_str, opt_handler, &data) "with default parameters and creating fb with diff formats"); igt_subtest_with_dynamic("dsc-with-formats") { for (int k = 0; k < ARRAY_SIZE(format_list); k++) - test_dsc(&data, TEST_DSC_FORMAT, 0, + test_dsc(&data, TEST_DSC_FORMAT, DEFAULT_BPC, format_list[k], DSC_FORMAT_RGB); } @@ -322,8 +324,9 @@ igt_main_args("l", NULL, help_str, opt_handler, &data) igt_subtest_with_dynamic("dsc-with-bpc-formats") { for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) { for (int k = 0; k < ARRAY_SIZE(format_list); k++) { - test_dsc(&data, TEST_DSC_BPC | TEST_DSC_FORMAT, bpc_list[j], - format_list[k], DSC_FORMAT_RGB); + test_dsc(&data, TEST_DSC_BPC | TEST_DSC_FORMAT, + bpc_list[j], format_list[k], + DSC_FORMAT_RGB); } } } @@ -333,7 +336,8 @@ igt_main_args("l", NULL, help_str, opt_handler, &data) "that support it"); igt_subtest_with_dynamic("dsc-with-output-formats") { for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) - test_dsc(&data, TEST_DSC_OUTPUT_FORMAT, 0, DRM_FORMAT_XRGB8888, + test_dsc(&data, TEST_DSC_OUTPUT_FORMAT, DEFAULT_BPC, + DRM_FORMAT_XRGB8888, output_format_list[k]); } -- 2.25.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t 4/5] tests/i915/kms_dsc: add get_status() 2023-06-27 11:32 [igt-dev] [PATCH i-g-t 0/5] Misc. dsc updates Swati Sharma ` (2 preceding siblings ...) 2023-06-27 11:32 ` [igt-dev] [PATCH i-g-t 3/5] tests/i915/kms_dsc: use #define for default bpc Swati Sharma @ 2023-06-27 11:32 ` Swati Sharma 2023-06-27 11:32 ` [igt-dev] [PATCH i-g-t 5/5] tests/i915/kms_dsc: add subtest Swati Sharma ` (2 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Swati Sharma @ 2023-06-27 11:32 UTC (permalink / raw) To: igt-dev Use get_status() to get current bpc when TEST_DSC_BPC test flag is used. If input bpc is not equal to current bpc, skip test. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/i915/kms_dsc.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c index 84bd5dbbc..793c4409d 100644 --- a/tests/i915/kms_dsc.c +++ b/tests/i915/kms_dsc.c @@ -112,12 +112,18 @@ static void test_cleanup(data_t *data) igt_remove_fb(data->drm_fd, &data->fb_test_pattern); } +static int get_status(int drmfd, enum pipe pipe) +{ + return igt_get_pipe_current_bpc(drmfd, pipe); +} + /* re-probe connectors and do a modeset with DSC */ static void update_display(data_t *data, uint32_t test_type) { int ret; bool enabled; int index = 0; + int current_bpc = 0; igt_plane_t *primary; drmModeModeInfo *mode; igt_output_t *output = data->output; @@ -203,11 +209,17 @@ static void update_display(data_t *data, uint32_t test_type) restore_force_dsc_en(); + if (test_type & TEST_DSC_BPC) { + current_bpc = get_status(data->drm_fd, data->pipe); + igt_skip_on_f(data->input_bpc != current_bpc, + "Input bpc = %d is not equal to current bpc = %d\n", + data->input_bpc, current_bpc); + } + igt_assert_f(enabled, "Default DSC enable failed on connector: %s pipe: %s\n", output->name, kmstest_pipe_name(data->pipe)); - reset: test_reset(data); -- 2.25.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t 5/5] tests/i915/kms_dsc: add subtest 2023-06-27 11:32 [igt-dev] [PATCH i-g-t 0/5] Misc. dsc updates Swati Sharma ` (3 preceding siblings ...) 2023-06-27 11:32 ` [igt-dev] [PATCH i-g-t 4/5] tests/i915/kms_dsc: add get_status() Swati Sharma @ 2023-06-27 11:32 ` Swati Sharma 2023-06-27 13:46 ` [igt-dev] ✓ Fi.CI.BAT: success for Misc. dsc updates Patchwork 2023-06-28 2:02 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 6 siblings, 0 replies; 8+ messages in thread From: Swati Sharma @ 2023-06-27 11:32 UTC (permalink / raw) To: igt-dev New subtest is added validating output format with different input bpc. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/i915/kms_dsc.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c index 793c4409d..cee3b4a8c 100644 --- a/tests/i915/kms_dsc.c +++ b/tests/i915/kms_dsc.c @@ -353,6 +353,19 @@ igt_main_args("l", NULL, help_str, opt_handler, &data) output_format_list[k]); } + igt_describe("Tests basic display stream compression functionality if supported " + "by a connector by forcing DSC and output format on all connectors " + "that support it with certain input BPC for the connector"); + igt_subtest_with_dynamic("dsc-with-output-formats-with-bpc") { + for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) { + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) { + test_dsc(&data, TEST_DSC_OUTPUT_FORMAT | TEST_DSC_BPC, + bpc_list[j], DRM_FORMAT_XRGB8888, + output_format_list[k]); + } + } + } + igt_fixture { igt_display_fini(&data.display); close(data.drm_fd); -- 2.25.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Misc. dsc updates 2023-06-27 11:32 [igt-dev] [PATCH i-g-t 0/5] Misc. dsc updates Swati Sharma ` (4 preceding siblings ...) 2023-06-27 11:32 ` [igt-dev] [PATCH i-g-t 5/5] tests/i915/kms_dsc: add subtest Swati Sharma @ 2023-06-27 13:46 ` Patchwork 2023-06-28 2:02 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-06-27 13:46 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8654 bytes --] == Series Details == Series: Misc. dsc updates URL : https://patchwork.freedesktop.org/series/119915/ State : success == Summary == CI Bug Log - changes from CI_DRM_13328 -> IGTPW_9273 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/index.html Participating hosts (40 -> 41) ------------------------------ Additional (2): bat-dg1-8 fi-pnv-d510 Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9273: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@xe_create@create-massive-size}: - {bat-dg1-8}: NOTRUN -> [FAIL][1] +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/bat-dg1-8/igt@xe_create@create-massive-size.html * igt@xe_guc_pc@rc6_on_idle: - {bat-dg1-8}: NOTRUN -> [INCOMPLETE][2] +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/bat-dg1-8/igt@xe_guc_pc@rc6_on_idle.html Known issues ------------ Here are the changes found in IGTPW_9273 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_parallel@engines@basic: - bat-mtlp-6: [PASS][3] -> [FAIL][4] ([i915#8386]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/bat-mtlp-6/igt@gem_exec_parallel@engines@basic.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/bat-mtlp-6/igt@gem_exec_parallel@engines@basic.html - bat-mtlp-8: [PASS][5] -> [FAIL][6] ([i915#8386]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/bat-mtlp-8/igt@gem_exec_parallel@engines@basic.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/bat-mtlp-8/igt@gem_exec_parallel@engines@basic.html * igt@i915_module_load@load: - bat-adlp-11: [PASS][7] -> [ABORT][8] ([i915#4423]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/bat-adlp-11/igt@i915_module_load@load.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/bat-adlp-11/igt@i915_module_load@load.html * igt@i915_selftest@live@gt_lrc: - bat-adlp-9: [PASS][9] -> [INCOMPLETE][10] ([i915#4983] / [i915#7913]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/bat-adlp-9/igt@i915_selftest@live@gt_lrc.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/bat-adlp-9/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-8: [PASS][11] -> [DMESG-FAIL][12] ([i915#7059]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@requests: - bat-mtlp-8: [PASS][13] -> [DMESG-FAIL][14] ([i915#8497]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/bat-mtlp-8/igt@i915_selftest@live@requests.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-rpls-2: NOTRUN -> [DMESG-WARN][15] ([i915#6367]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/bat-rpls-2/igt@i915_selftest@live@slpc.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][16] ([i915#1845] / [i915#5354]) +3 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [PASS][17] -> [ABORT][18] ([i915#8442]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][19] ([fdo#109271]) +37 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/fi-pnv-d510/igt@kms_psr@primary_page_flip.html * igt@kms_setmode@basic-clone-single-crtc: - fi-pnv-d510: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#4579]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/fi-pnv-d510/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@i915_selftest@live@migrate: - bat-dg2-11: [DMESG-WARN][21] ([i915#7699]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/bat-dg2-11/igt@i915_selftest@live@migrate.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/bat-dg2-11/igt@i915_selftest@live@migrate.html - bat-mtlp-8: [DMESG-FAIL][23] ([i915#7699]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/bat-mtlp-8/igt@i915_selftest@live@migrate.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/bat-mtlp-8/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@mman: - bat-rpls-2: [TIMEOUT][25] ([i915#6794] / [i915#7392]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/bat-rpls-2/igt@i915_selftest@live@mman.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/bat-rpls-2/igt@i915_selftest@live@mman.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [DMESG-FAIL][27] ([i915#6763]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/bat-mtlp-6/igt@i915_selftest@live@workarounds.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#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8386]: https://gitlab.freedesktop.org/drm/intel/issues/8386 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8513]: https://gitlab.freedesktop.org/drm/intel/issues/8513 [i915#8676]: https://gitlab.freedesktop.org/drm/intel/issues/8676 [i915#8678]: https://gitlab.freedesktop.org/drm/intel/issues/8678 [i915#8679]: https://gitlab.freedesktop.org/drm/intel/issues/8679 [i915#8698]: https://gitlab.freedesktop.org/drm/intel/issues/8698 [i915#8699]: https://gitlab.freedesktop.org/drm/intel/issues/8699 [i915#8700]: https://gitlab.freedesktop.org/drm/intel/issues/8700 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7351 -> IGTPW_9273 CI-20190529: 20190529 CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9273: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/index.html IGT_7351: d8dc96b95c60e4737fdfa1664ce9b1dcebfdef60 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_dsc@dsc-with-output-formats-with-bpc == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/index.html [-- Attachment #2: Type: text/html, Size: 8995 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Misc. dsc updates 2023-06-27 11:32 [igt-dev] [PATCH i-g-t 0/5] Misc. dsc updates Swati Sharma ` (5 preceding siblings ...) 2023-06-27 13:46 ` [igt-dev] ✓ Fi.CI.BAT: success for Misc. dsc updates Patchwork @ 2023-06-28 2:02 ` Patchwork 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-06-28 2:02 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 64516 bytes --] == Series Details == Series: Misc. dsc updates URL : https://patchwork.freedesktop.org/series/119915/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13328_full -> IGTPW_9273_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9273_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9273_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_9273/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_9273_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ctx_persistence@engines-cleanup@vcs1: - shard-mtlp: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-1/igt@gem_ctx_persistence@engines-cleanup@vcs1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-2/igt@gem_ctx_persistence@engines-cleanup@vcs1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-dg2: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html New tests --------- New tests have been introduced between CI_DRM_13328_full and IGTPW_9273_full: ### New IGT tests (1) ### * igt@kms_dsc@dsc-with-output-formats-with-bpc: - Statuses : 5 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9273_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-3/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@feature_discovery@display-3x: - shard-tglu: NOTRUN -> [SKIP][6] ([i915#1839]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-2/igt@feature_discovery@display-3x.html * igt@gem_create@create-ext-set-pat: - shard-glk: NOTRUN -> [FAIL][7] ([i915#8621]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-glk8/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: [PASS][8] -> [FAIL][9] ([i915#2410]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-6/igt@gem_ctx_persistence@engines-hang@vcs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-7/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8555]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#5882]) +8 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs3: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#4579] / [i915#5882]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs3.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#4812]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-6/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#4771]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-6/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@invalid-bonds: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4036]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-7/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][16] -> [FAIL][17] ([i915#2846]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none@bcs0: - shard-tglu: NOTRUN -> [FAIL][18] ([i915#2842]) +4 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-9/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][19] -> [FAIL][20] ([i915#2842]) +3 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#3539]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-11/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: NOTRUN -> [FAIL][22] ([i915#2842]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-6/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#3281]) +2 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#3281]) +2 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-10/igt@gem_exec_reloc@basic-gtt-wc-active.html - shard-rkl: NOTRUN -> [SKIP][25] ([i915#3281]) +2 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4812]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-4/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s3@lmem0: - shard-dg2: [PASS][27] -> [FAIL][28] ([fdo#103375]) +3 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-8/igt@gem_exec_suspend@basic-s3@lmem0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-5/igt@gem_exec_suspend@basic-s3@lmem0.html * igt@gem_exec_whisper@basic-forked-all: - shard-mtlp: [PASS][29] -> [FAIL][30] ([i915#6363]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-4/igt@gem_exec_whisper@basic-forked-all.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-6/igt@gem_exec_whisper@basic-forked-all.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4860]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-11/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][32] ([i915#4613] / [i915#7582]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-9/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-glk: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#4613]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-glk9/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4613]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][35] -> [DMESG-WARN][36] ([i915#4936] / [i915#5493]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap@bad-offset: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4083]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-10/igt@gem_mmap@bad-offset.html * igt@gem_mmap_gtt@hang: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4077]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-4/igt@gem_mmap_gtt@hang.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4083]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-8/igt@gem_mmap_wc@bad-offset.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4270]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-5/igt@gem_pxp@reject-modify-context-protection-off-2.html - shard-rkl: NOTRUN -> [SKIP][41] ([i915#4270]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_readwrite@write-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3282]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-7/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#5190]) +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-11/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#8428]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-6/igt@gem_render_copy@yf-tiled-to-vebox-linear.html * igt@gem_userptr_blits@coherency-sync: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#3297]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-7/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3297]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-5/igt@gem_userptr_blits@dmabuf-unsync.html - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3297]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [PASS][48] -> [FAIL][49] ([i915#7916]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-2/igt@gem_userptr_blits@nohangcheck.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-1/igt@gem_userptr_blits@nohangcheck.html * igt@gem_userptr_blits@vma-merge: - shard-glk: NOTRUN -> [FAIL][50] ([i915#3318]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-glk5/igt@gem_userptr_blits@vma-merge.html * igt@gen7_exec_parse@bitmasks: - shard-tglu: NOTRUN -> [SKIP][51] ([fdo#109289]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-2/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@allowed-all: - shard-apl: [PASS][52] -> [ABORT][53] ([i915#5566]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-apl3/igt@gen9_exec_parse@allowed-all.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-apl4/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#2856]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-6/igt@gen9_exec_parse@basic-rejected.html - shard-rkl: NOTRUN -> [SKIP][55] ([i915#2527]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-4/igt@gen9_exec_parse@basic-rejected.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [PASS][56] -> [ABORT][57] ([i915#8489]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [PASS][58] -> [FAIL][59] ([i915#8691]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-2/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-4/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: NOTRUN -> [SKIP][60] ([fdo#109289] / [i915#8403]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-6/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@gem-evict-pwrite: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4077]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-11/igt@i915_pm_rpm@gem-evict-pwrite.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][62] -> [SKIP][63] ([i915#1397]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#6621]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-5/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@min-max-config-loaded: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#6621]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-6/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_selftest@live@late_gt_pm: - shard-glk: [PASS][66] -> [ABORT][67] ([i915#6217]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-glk9/igt@i915_selftest@live@late_gt_pm.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-glk1/igt@i915_selftest@live@late_gt_pm.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4212]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-10/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][69] ([i915#8247]) +3 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-5/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][70] ([fdo#111614]) +1 similar issue [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-1/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][71] -> [FAIL][72] ([i915#5138]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][73] ([fdo#111615] / [i915#5286]) +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#5286]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][75] ([fdo#111614]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][76] ([fdo#111614] / [i915#3638]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-4/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: [PASS][77] -> [FAIL][78] ([i915#3743]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][79] ([fdo#111615]) +3 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4538] / [i915#5190]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-10/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html - shard-rkl: NOTRUN -> [SKIP][81] ([fdo#110723]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3689] / [i915#5354]) +4 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-7/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html - shard-rkl: NOTRUN -> [SKIP][83] ([i915#3734] / [i915#5354] / [i915#6095]) +3 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-4/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#6095]) +6 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-6/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3886] / [i915#6095]) +3 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#5354] / [i915#6095]) +4 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-4/igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-2/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#3886]) +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-glk1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#5354] / [i915#6095]) +3 similar issues [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-2/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#3689] / [i915#5354] / [i915#6095]) +6 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-4/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#5354]) +3 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-1/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][92] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-2/igt@kms_ccs@pipe-d-missing-ccs-buffer-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition: - shard-glk: NOTRUN -> [SKIP][93] ([fdo#109271]) +47 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-glk2/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4087]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-5/igt@kms_cdclk@mode-transition-all-outputs.html - shard-rkl: NOTRUN -> [SKIP][95] ([i915#3742]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#7828]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-8/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-0-75: - shard-tglu: NOTRUN -> [SKIP][97] ([fdo#111827]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-2/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][98] ([fdo#111827]) +1 similar issue [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-6/igt@kms_chamelium_color@ctm-green-to-red.html - shard-rkl: NOTRUN -> [SKIP][99] ([fdo#111827]) +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-7/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#7828]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-6/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#7828]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-rkl: NOTRUN -> [SKIP][102] ([i915#7828]) +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#3555] / [i915#4579]) +1 similar issue [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-5/igt@kms_color@deep-color.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4579] / [i915#7118]) +2 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-10/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-vga-1: - shard-snb: [PASS][105] -> [DMESG-WARN][106] ([i915#5090]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-snb2/igt@kms_cursor_crc@cursor-suspend@pipe-a-vga-1.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-snb5/igt@kms_cursor_crc@cursor-suspend@pipe-a-vga-1.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#3546]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2: NOTRUN -> [SKIP][108] ([fdo#109274] / [i915#5354]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][109] ([i915#2346]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#4103]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * {igt@kms_dsc@dsc-with-output-formats-with-bpc} (NEW): - shard-tglu: NOTRUN -> [SKIP][111] ([i915#4579]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-apl: NOTRUN -> [SKIP][112] ([fdo#109271]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-apl1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][113] ([fdo#109274] / [i915#3637]) +4 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#3637]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-3/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][115] ([fdo#109274]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-12/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html - shard-rkl: NOTRUN -> [SKIP][116] ([fdo#111825]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][117] -> [FAIL][118] ([i915#2122]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-glk2/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-glk2/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-edp1: - shard-mtlp: [PASS][119] -> [DMESG-WARN][120] ([i915#1982]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-edp1.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-edp1.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][121] ([fdo#103375]) +2 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-1/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#2672] / [i915#4579]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#2587] / [i915#2672] / [i915#4579]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-glk: NOTRUN -> [SKIP][124] ([fdo#109271] / [i915#4579]) +3 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-glk6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#2672] / [i915#4579]) +1 similar issue [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#4579]) +9 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#5274]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-2/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#8708]) +2 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg2: [PASS][129] -> [FAIL][130] ([i915#6880]) +1 similar issue [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#3023]) +4 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#5354]) +12 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][133] ([fdo#110189]) +6 similar issues [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#8708]) +4 similar issues [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#3458]) +2 similar issues [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][136] ([fdo#109280]) +11 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite.html - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#1825]) +7 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][138] ([fdo#111825] / [i915#1825]) +9 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#3555] / [i915#4579]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1: - shard-apl: [PASS][140] -> [FAIL][141] ([i915#1188]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-apl3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-apl7/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-dg2: NOTRUN -> [SKIP][142] ([fdo#109289]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-8/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html - shard-rkl: NOTRUN -> [SKIP][143] ([fdo#109289]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-6/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][144] ([i915#4573]) +1 similar issue [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-glk6/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#4579]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-7/igt@kms_plane_lowres@tiling-yf.html - shard-rkl: NOTRUN -> [SKIP][146] ([i915#4579]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#5176]) +2 similar issues [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#5176]) +2 similar issues [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#4579] / [i915#5176]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#4579] / [i915#5176]) +2 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][151] ([fdo#109271]) +15 similar issues [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-snb7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#5235]) +2 similar issues [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#4579] / [i915#5235]) +3 similar issues [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1.html - shard-tglu: NOTRUN -> [SKIP][154] ([i915#4579] / [i915#5235]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-dp-2: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#5235]) +11 similar issues [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-12/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-dp-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#5235]) +5 similar issues [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#4579] / [i915#5235]) +1 similar issue [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#5235]) +1 similar issue [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#4579] / [i915#5235]) +1 similar issue [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][160] ([fdo#109271] / [i915#4579]) +8 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-snb1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#6524] / [i915#6805]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-1/igt@kms_prime@d3hot.html - shard-rkl: NOTRUN -> [SKIP][162] ([i915#6524]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-2/igt@kms_prime@d3hot.html * igt@kms_psr@psr2_sprite_plane_move: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#1072]) +1 similar issue [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-10/igt@kms_psr@psr2_sprite_plane_move.html - shard-rkl: NOTRUN -> [SKIP][164] ([i915#1072]) +1 similar issue [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-1/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][165] ([i915#5465]) +1 similar issue [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@universal-plane-pipe-c-functional: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#4070] / [i915#6768]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#2436]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-11/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][168] ([i915#2436]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-idle@vcs0: - shard-mtlp: [PASS][169] -> [FAIL][170] ([i915#4349]) +1 similar issue [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-1/igt@perf_pmu@busy-idle@vcs0.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-8/igt@perf_pmu@busy-idle@vcs0.html * igt@sysfs_heartbeat_interval@nopreempt@vcs0: - shard-mtlp: [PASS][171] -> [FAIL][172] ([i915#6015]) +3 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-2/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-5/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: [PASS][173] -> [ABORT][174] ([i915#8521]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-7/igt@sysfs_timeslice_duration@timeout@vecs0.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-6/igt@sysfs_timeslice_duration@timeout@vecs0.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#2575]) +2 similar issues [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-7/igt@v3d/v3d_job_submission@array-job-submission.html - shard-rkl: NOTRUN -> [SKIP][176] ([fdo#109315]) +2 similar issues [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-4/igt@v3d/v3d_job_submission@array-job-submission.html - shard-tglu: NOTRUN -> [SKIP][177] ([fdo#109315] / [i915#2575]) +3 similar issues [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-5/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_submit_csd@bad-multisync-in-sync: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#2575]) +2 similar issues [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-7/igt@v3d/v3d_submit_csd@bad-multisync-in-sync.html * igt@vc4/vc4_tiling@get-after-free: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#7711]) +1 similar issue [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-7/igt@vc4/vc4_tiling@get-after-free.html * igt@vc4/vc4_tiling@get-bad-flags: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#2575]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-3/igt@vc4/vc4_tiling@get-bad-flags.html * igt@vc4/vc4_wait_bo@bad-pad: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#7711]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-5/igt@vc4/vc4_wait_bo@bad-pad.html - shard-rkl: NOTRUN -> [SKIP][182] ([i915#7711]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-1/igt@vc4/vc4_wait_bo@bad-pad.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][183] ([i915#6268]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [FAIL][185] ([i915#2410]) -> [PASS][186] +2 similar issues [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@smoketest: - shard-mtlp: [FAIL][187] ([i915#8663]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-6/igt@gem_ctx_persistence@smoketest.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-2/igt@gem_ctx_persistence@smoketest.html * igt@gem_eio@in-flight-10ms: - shard-mtlp: [ABORT][189] ([i915#8503]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-6/igt@gem_eio@in-flight-10ms.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-6/igt@gem_eio@in-flight-10ms.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [FAIL][191] ([i915#2842]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_whisper@basic-contexts-all: - shard-mtlp: [FAIL][193] ([i915#6363]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-all.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-all.html * igt@gem_mmap_offset@clear@smem0: - shard-dg2: [DMESG-WARN][195] ([i915#8304]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-6/igt@gem_mmap_offset@clear@smem0.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-6/igt@gem_mmap_offset@clear@smem0.html * igt@gem_workarounds@suspend-resume: - {shard-dg1}: [FAIL][197] ([fdo#103375]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg1-19/igt@gem_workarounds@suspend-resume.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg1-16/igt@gem_workarounds@suspend-resume.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [FAIL][199] ([i915#7069]) -> [PASS][200] +1 similar issue [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-1/igt@i915_hangman@gt-engine-hang@vcs0.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-6/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - {shard-dg1}: [FAIL][201] ([i915#3591]) -> [PASS][202] +1 similar issue [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [SKIP][203] ([i915#1397]) -> [PASS][204] +1 similar issue [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][205] ([i915#6763]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-1/igt@i915_selftest@live@workarounds.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-7/igt@i915_selftest@live@workarounds.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [FAIL][207] ([i915#72]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][209] ([i915#2346]) -> [PASS][210] +1 similar issue [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1: - shard-glk: [FAIL][211] ([i915#79]) -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-glk4/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-glk9/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: [FAIL][213] ([i915#6880]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: [FAIL][215] -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2: [FAIL][217] ([fdo#103375]) -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-suspend.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-12/igt@kms_frontbuffer_tracking@fbc-suspend.html - shard-mtlp: [FAIL][219] ([fdo#103375]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-suspend.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][221] ([i915#8292]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_vblank@pipe-c-wait-busy-hang: - shard-mtlp: [DMESG-WARN][223] -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-6/igt@kms_vblank@pipe-c-wait-busy-hang.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-3/igt@kms_vblank@pipe-c-wait-busy-hang.html * igt@perf_pmu@busy-double-start@ccs1: - shard-dg2: [FAIL][225] ([i915#4349]) -> [PASS][226] +8 similar issues [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-10/igt@perf_pmu@busy-double-start@ccs1.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-7/igt@perf_pmu@busy-double-start@ccs1.html * igt@perf_pmu@busy-double-start@vecs0: - {shard-dg1}: [FAIL][227] ([i915#4349]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg1-16/igt@perf_pmu@busy-double-start@vecs0.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg1-19/igt@perf_pmu@busy-double-start@vecs0.html * igt@perf_pmu@most-busy-idle-check-all@bcs0: - {shard-dg1}: [FAIL][229] ([i915#5234]) -> [PASS][230] +1 similar issue [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg1-14/igt@perf_pmu@most-busy-idle-check-all@bcs0.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all@bcs0.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg2: [FAIL][231] ([i915#5234]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-8/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-11/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@perf_pmu@render-node-busy-idle@ccs0: - shard-mtlp: [FAIL][233] ([i915#4349]) -> [PASS][234] +4 similar issues [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-3/igt@perf_pmu@render-node-busy-idle@ccs0.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle@ccs0.html #### Warnings #### * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-mtlp: [ABORT][235] ([i915#8131]) -> [TIMEOUT][236] ([i915#7392]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-priority-all.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-4/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][237] ([i915#7061]) -> [WARN][238] ([i915#6596] / [i915#7356]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-12/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_content_protection@mei_interface: - shard-dg2: [SKIP][239] ([i915#4579] / [i915#7118] / [i915#7162]) -> [SKIP][240] ([i915#4579] / [i915#7118]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-dg2-11/igt@kms_content_protection@mei_interface.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-dg2-10/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][241] ([i915#5954]) -> [DMESG-FAIL][242] ([i915#1982] / [i915#2017] / [i915#5954]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13328/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [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#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#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [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#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [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#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [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#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [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#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090 [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#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6217]: https://gitlab.freedesktop.org/drm/intel/issues/6217 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6596]: https://gitlab.freedesktop.org/drm/intel/issues/6596 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7916]: https://gitlab.freedesktop.org/drm/intel/issues/7916 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8304]: https://gitlab.freedesktop.org/drm/intel/issues/8304 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8621]: https://gitlab.freedesktop.org/drm/intel/issues/8621 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8663]: https://gitlab.freedesktop.org/drm/intel/issues/8663 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7351 -> IGTPW_9273 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9273: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/index.html IGT_7351: d8dc96b95c60e4737fdfa1664ce9b1dcebfdef60 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9273/index.html [-- Attachment #2: Type: text/html, Size: 76818 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-06-28 2:02 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-06-27 11:32 [igt-dev] [PATCH i-g-t 0/5] Misc. dsc updates Swati Sharma 2023-06-27 11:32 ` [igt-dev] [PATCH i-g-t 1/5] tests/i915/kms_dsc: add new test flag Swati Sharma 2023-06-27 11:32 ` [igt-dev] [PATCH i-g-t 2/5] tests/i915/kms_dsc: use uint32_t " Swati Sharma 2023-06-27 11:32 ` [igt-dev] [PATCH i-g-t 3/5] tests/i915/kms_dsc: use #define for default bpc Swati Sharma 2023-06-27 11:32 ` [igt-dev] [PATCH i-g-t 4/5] tests/i915/kms_dsc: add get_status() Swati Sharma 2023-06-27 11:32 ` [igt-dev] [PATCH i-g-t 5/5] tests/i915/kms_dsc: add subtest Swati Sharma 2023-06-27 13:46 ` [igt-dev] ✓ Fi.CI.BAT: success for Misc. dsc updates Patchwork 2023-06-28 2:02 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox