* [igt-dev] [PATCH i-g-t 0/2] tests/i915/kms_big_joiner: Test Cleanup
@ 2023-08-25 3:32 Karthik B S
2023-08-25 3:32 ` [igt-dev] [PATCH i-g-t 1/2] " Karthik B S
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Karthik B S @ 2023-08-25 3:32 UTC (permalink / raw)
To: igt-dev
Signed-off-by: Karthik B S <karthik.b.s@intel.com>
Karthik B S (2):
tests/i915/kms_big_joiner: Test Cleanup
tests/i915/kms_big_joiner: Make use of big joiner helpers
tests/i915/kms_big_joiner.c | 46 +++++++++++++------------------------
1 file changed, 16 insertions(+), 30 deletions(-)
--
2.39.1
^ permalink raw reply [flat|nested] 6+ messages in thread* [igt-dev] [PATCH i-g-t 1/2] tests/i915/kms_big_joiner: Test Cleanup 2023-08-25 3:32 [igt-dev] [PATCH i-g-t 0/2] tests/i915/kms_big_joiner: Test Cleanup Karthik B S @ 2023-08-25 3:32 ` Karthik B S 2023-08-25 3:32 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/kms_big_joiner: Make use of big joiner helpers Karthik B S ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Karthik B S @ 2023-08-25 3:32 UTC (permalink / raw) To: igt-dev Instead of storing the output->id of big joiner output in 'data', store the output structure itself to avoid looping to find the outputs in each of the subtests. Signed-off-by: Karthik B S <karthik.b.s@intel.com> --- tests/i915/kms_big_joiner.c | 31 ++++++++----------------------- 1 file changed, 8 insertions(+), 23 deletions(-) diff --git a/tests/i915/kms_big_joiner.c b/tests/i915/kms_big_joiner.c index ae38e02c5..d438b2211 100644 --- a/tests/i915/kms_big_joiner.c +++ b/tests/i915/kms_big_joiner.c @@ -42,7 +42,7 @@ typedef struct { int n_pipes; enum pipe pipe1; enum pipe pipe2; - uint32_t big_joiner_output[2]; + igt_output_t *big_joiner_output[2]; } data_t; /** @@ -107,20 +107,13 @@ static void test_invalid_modeset(data_t *data) static void test_basic_modeset(data_t *data) { drmModeModeInfo *mode; - igt_output_t *output, *big_joiner_output = NULL; + igt_output_t *big_joiner_output = data->big_joiner_output[0]; igt_display_t *display = &data->display; igt_pipe_t *pipe; igt_plane_t *plane; igt_display_reset(display); - for_each_connected_output(display, output) { - if (data->big_joiner_output[0] == output->id) { - big_joiner_output = output; - break; - } - } - igt_output_set_pipe(big_joiner_output, data->pipe1); igt_sort_connector_modes(big_joiner_output->config.connector, @@ -154,23 +147,15 @@ static void test_basic_modeset(data_t *data) static void test_dual_display(data_t *data) { drmModeModeInfo *mode; - igt_output_t *output, *big_joiner_output[2]; + igt_output_t *big_joiner_output[2]; igt_display_t *display = &data->display; igt_pipe_t *pipe; igt_plane_t *plane1, *plane2; - int count = 0; igt_display_reset(display); - for_each_connected_output(display, output) { - if (data->big_joiner_output[count] == output->id) { - big_joiner_output[count] = output; - count++; - } - - if (count > 1) - break; - } + big_joiner_output[0] = data->big_joiner_output[0]; + big_joiner_output[1] = data->big_joiner_output[1]; igt_output_set_pipe(big_joiner_output[0], data->pipe1); igt_output_set_pipe(big_joiner_output[1], data->pipe2); @@ -233,7 +218,7 @@ igt_main mode = &output->config.connector->modes[0]; if (mode->hdisplay > MAX_HDISPLAY_PER_PIPE) { - data.big_joiner_output[count++] = output->id; + data.big_joiner_output[count++] = output; width = max(width, mode->hdisplay); height = max(height, mode->vdisplay); @@ -270,7 +255,7 @@ igt_main igt_display_reset(&data.display); for_each_connected_output(&data.display, output) { - if (data.big_joiner_output[0] != output->id) + if (data.big_joiner_output[0]->id != output->id) continue; igt_sort_connector_modes(output->config.connector, @@ -297,7 +282,7 @@ igt_main igt_sort_connector_modes(output->config.connector, sort_drm_modes_by_res_dsc); - if (data.big_joiner_output[0] == output->id) { + if (data.big_joiner_output[0]->id == output->id) { first_output = output; igt_output_set_pipe(output, data.pipe1); igt_output_override_mode(output, &output->config.connector->modes[0]); -- 2.39.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/i915/kms_big_joiner: Make use of big joiner helpers 2023-08-25 3:32 [igt-dev] [PATCH i-g-t 0/2] tests/i915/kms_big_joiner: Test Cleanup Karthik B S 2023-08-25 3:32 ` [igt-dev] [PATCH i-g-t 1/2] " Karthik B S @ 2023-08-25 3:32 ` Karthik B S 2023-08-25 5:06 ` [igt-dev] ✗ CI.xeBAT: failure for tests/i915/kms_big_joiner: Test Cleanup Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Karthik B S @ 2023-08-25 3:32 UTC (permalink / raw) To: igt-dev Replace the hardcoded constraints in the test with the generic big joiner helpers already present in lib. This ensures that all big joiner constraints are accounted for. Signed-off-by: Karthik B S <karthik.b.s@intel.com> --- tests/i915/kms_big_joiner.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/tests/i915/kms_big_joiner.c b/tests/i915/kms_big_joiner.c index d438b2211..1d32c8a12 100644 --- a/tests/i915/kms_big_joiner.c +++ b/tests/i915/kms_big_joiner.c @@ -31,8 +31,6 @@ */ #include "igt.h" -#define MAX_HDISPLAY_PER_PIPE 5120 - IGT_TEST_DESCRIPTION("Test big joiner"); typedef struct { @@ -217,7 +215,7 @@ igt_main sort_drm_modes_by_res_dsc); mode = &output->config.connector->modes[0]; - if (mode->hdisplay > MAX_HDISPLAY_PER_PIPE) { + if (igt_bigjoiner_possible(mode, igt_get_max_dotclock(data.drm_fd))) { data.big_joiner_output[count++] = output; width = max(width, mode->hdisplay); @@ -226,6 +224,8 @@ igt_main valid_output++; } + igt_require_f(count > 0, "No output with big joiner requirement found\n"); + data.n_pipes = 0; for_each_pipe(&data.display, i) { data.n_pipes++; @@ -233,8 +233,6 @@ igt_main j++; } - igt_require_f(count > 0, "No output with 5k+ mode found\n"); - igt_create_pattern_fb(data.drm_fd, width, height, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, &data.fb); } @@ -243,8 +241,11 @@ igt_main igt_subtest_with_dynamic("basic") { for (i = 0; i < data.n_pipes - 1; i++) { data.pipe1 = pipe_seq[i]; - igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe_seq[i])) - test_basic_modeset(&data); + igt_output_set_pipe(data.big_joiner_output[0], data.pipe1); + if (i915_pipe_output_combo_valid(&data.display)) { + igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe_seq[i])) + test_basic_modeset(&data); + } } } -- 2.39.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] ✗ CI.xeBAT: failure for tests/i915/kms_big_joiner: Test Cleanup 2023-08-25 3:32 [igt-dev] [PATCH i-g-t 0/2] tests/i915/kms_big_joiner: Test Cleanup Karthik B S 2023-08-25 3:32 ` [igt-dev] [PATCH i-g-t 1/2] " Karthik B S 2023-08-25 3:32 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/kms_big_joiner: Make use of big joiner helpers Karthik B S @ 2023-08-25 5:06 ` Patchwork 2023-08-25 5:14 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-08-25 16:34 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-08-25 5:06 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3124 bytes --] == Series Details == Series: tests/i915/kms_big_joiner: Test Cleanup URL : https://patchwork.freedesktop.org/series/122882/ State : failure == Summary == CI Bug Log - changes from XEIGT_7452_BAT -> XEIGTPW_9655_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_9655_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_9655_BAT, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (3 -> 3) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_9655_BAT: ### IGT changes ### #### Possible regressions #### * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-dg2-oem2: [PASS][1] -> [TIMEOUT][2] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7452/bat-dg2-oem2/igt@kms_pipe_crc_basic@nonblocking-crc.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9655/bat-dg2-oem2/igt@kms_pipe_crc_basic@nonblocking-crc.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-dp-3: - bat-dg2-oem2: [PASS][3] -> [INCOMPLETE][4] +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7452/bat-dg2-oem2/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-dp-3.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9655/bat-dg2-oem2/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-dp-3.html #### Warnings #### * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - bat-dg2-oem2: [FAIL][5] ([Intel XE#400]) -> [DMESG-FAIL][6] +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7452/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9655/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html Known issues ------------ Here are the changes found in XEIGTPW_9655_BAT that come from known issues: ### IGT changes ### #### Warnings #### * igt@kms_force_connector_basic@force-connector-state: - bat-atsm-2: [SKIP][7] ([Intel XE#277]) -> [SKIP][8] ([Intel XE#277] / [Intel XE#540]) +2 similar issues [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7452/bat-atsm-2/igt@kms_force_connector_basic@force-connector-state.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9655/bat-atsm-2/igt@kms_force_connector_basic@force-connector-state.html [Intel XE#277]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/277 [Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400 [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540 Build changes ------------- * IGT: IGT_7452 -> IGTPW_9655 IGTPW_9655: 9655 IGT_7452: 7452 xe-340-c77796cf84361b4716839141f2e48de2bf7f4bd5: c77796cf84361b4716839141f2e48de2bf7f4bd5 [-- Attachment #2: Type: text/html, Size: 3761 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/kms_big_joiner: Test Cleanup 2023-08-25 3:32 [igt-dev] [PATCH i-g-t 0/2] tests/i915/kms_big_joiner: Test Cleanup Karthik B S ` (2 preceding siblings ...) 2023-08-25 5:06 ` [igt-dev] ✗ CI.xeBAT: failure for tests/i915/kms_big_joiner: Test Cleanup Patchwork @ 2023-08-25 5:14 ` Patchwork 2023-08-25 16:34 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-08-25 5:14 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3459 bytes --] == Series Details == Series: tests/i915/kms_big_joiner: Test Cleanup URL : https://patchwork.freedesktop.org/series/122882/ State : success == Summary == CI Bug Log - changes from CI_DRM_13564 -> IGTPW_9655 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/index.html Participating hosts (40 -> 38) ------------------------------ Missing (2): fi-kbl-soraka fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9655 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@migrate: - bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#7699]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/bat-mtlp-8/igt@i915_selftest@live@migrate.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/bat-mtlp-8/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@mman: - bat-rpls-2: [PASS][3] -> [TIMEOUT][4] ([i915#6794] / [i915#7392]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/bat-rpls-2/igt@i915_selftest@live@mman.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/bat-rpls-2/igt@i915_selftest@live@mman.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-rpls-2: [PASS][5] -> [WARN][6] ([i915#8747]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_psr@primary_page_flip: - bat-rplp-1: NOTRUN -> [SKIP][7] ([i915#1072]) +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/bat-rplp-1/igt@kms_psr@primary_page_flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: NOTRUN -> [ABORT][8] ([i915#8260] / [i915#8668]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][9] ([i915#8442] / [i915#8668]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8747]: https://gitlab.freedesktop.org/drm/intel/issues/8747 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7452 -> IGTPW_9655 CI-20190529: 20190529 CI_DRM_13564: f5ad6bdecf116b4640e91047b39766145e40d72e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9655: 9655 IGT_7452: 7452 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/index.html [-- Attachment #2: Type: text/html, Size: 4251 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/kms_big_joiner: Test Cleanup 2023-08-25 3:32 [igt-dev] [PATCH i-g-t 0/2] tests/i915/kms_big_joiner: Test Cleanup Karthik B S ` (3 preceding siblings ...) 2023-08-25 5:14 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-08-25 16:34 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-08-25 16:34 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 78106 bytes --] == Series Details == Series: tests/i915/kms_big_joiner: Test Cleanup URL : https://patchwork.freedesktop.org/series/122882/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13564_full -> IGTPW_9655_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9655_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9655_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_9655/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_9655_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_joiner@invalid-modeset: - shard-rkl: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-7/igt@kms_big_joiner@invalid-modeset.html - shard-tglu: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-6/igt@kms_big_joiner@invalid-modeset.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible@bc-hdmi-a1-hdmi-a2.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-glk6/igt@kms_flip@2x-flip-vs-suspend-interruptible@bc-hdmi-a1-hdmi-a2.html #### Warnings #### * igt@kms_big_joiner@2x-modeset: - shard-dg1: [SKIP][5] ([i915#2705]) -> [SKIP][6] +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-dg1-17/igt@kms_big_joiner@2x-modeset.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg1-18/igt@kms_big_joiner@2x-modeset.html - shard-tglu: [SKIP][7] ([i915#2705]) -> [SKIP][8] +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-tglu-6/igt@kms_big_joiner@2x-modeset.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-9/igt@kms_big_joiner@2x-modeset.html - shard-mtlp: [SKIP][9] ([i915#2705]) -> [SKIP][10] +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-6/igt@kms_big_joiner@2x-modeset.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-5/igt@kms_big_joiner@2x-modeset.html * igt@kms_big_joiner@basic: - shard-rkl: [SKIP][11] ([i915#2705]) -> [SKIP][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-rkl-1/igt@kms_big_joiner@basic.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-6/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: [SKIP][13] ([i915#2705]) -> [SKIP][14] +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-dg2-1/igt@kms_big_joiner@invalid-modeset.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-8/igt@kms_big_joiner@invalid-modeset.html Known issues ------------ Here are the changes found in IGTPW_9655_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8411]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-8/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8414]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-7/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][17] -> [FAIL][18] ([i915#7742]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@drm_fdinfo@virtual-busy-idle: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#8414]) +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-2/igt@drm_fdinfo@virtual-busy-idle.html * igt@drm_mm@drm_mm_test: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8661]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-10/igt@drm_mm@drm_mm_test.html * igt@feature_discovery@display-2x: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#1839]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-2/igt@feature_discovery@display-2x.html * igt@gem_bad_reloc@negative-reloc-bltcopy: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#3281]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-7/igt@gem_bad_reloc@negative-reloc-bltcopy.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#3281]) +7 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#3555] / [i915#5325]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#7697]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-6/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg2: NOTRUN -> [SKIP][26] ([fdo#109314]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-8/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@engines-hang: - shard-snb: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#1099]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-snb1/igt@gem_ctx_persistence@engines-hang.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#280]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-contexts-1us: - shard-mtlp: [PASS][29] -> [ABORT][30] ([i915#8503]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-3/igt@gem_eio@in-flight-contexts-1us.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-8/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_eio@kms: - shard-dg2: [PASS][31] -> [FAIL][32] ([i915#5784]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-dg2-11/igt@gem_eio@kms.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-10/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][33] -> [FAIL][34] ([i915#5784]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-dg1-13/igt@gem_eio@unwedge-stress.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg1-15/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-3/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4771]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-1/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#4525]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#6344]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html - shard-tglu: NOTRUN -> [SKIP][39] ([i915#6344]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-8/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@pi@vcs1: - shard-mtlp: NOTRUN -> [FAIL][40] ([i915#4475] / [i915#7765]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-4/igt@gem_exec_capture@pi@vcs1.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglu: [PASS][41] -> [FAIL][42] ([i915#2842]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-tglu-7/igt@gem_exec_fair@basic-flow@rcs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-9/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: NOTRUN -> [FAIL][43] ([i915#2842]) +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: [PASS][44] -> [FAIL][45] ([i915#2842]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-7/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-mtlp: [PASS][46] -> [DMESG-FAIL][47] ([i915#9121]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-7/igt@gem_exec_flush@basic-batch-kernel-default-wb.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +2 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-2/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#5107]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-4/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +4 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_suspend@basic-s3@smem: - shard-tglu: [PASS][51] -> [ABORT][52] ([i915#5122] / [i915#5251] / [i915#8213]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-tglu-2/igt@gem_exec_suspend@basic-s3@smem.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-10/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][53] ([i915#7975] / [i915#8213]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-12/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4860]) +3 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-12/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-8/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@massive-random: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-2/igt@gem_lmem_swapping@massive-random.html - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-9/igt@gem_lmem_swapping@massive-random.html * igt@gem_madvise@dontneed-before-pwrite: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282]) +3 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-2/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-7/igt@gem_mmap@bad-size.html * igt@gem_mmap@short-mmap: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +3 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-8/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@basic-read-write: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +10 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-10/igt@gem_mmap_gtt@basic-read-write.html * igt@gem_mmap_gtt@basic-write-cpu-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4077]) +1 similar issue [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-6/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_ppgtt@shrink-vs-evict-any: - shard-rkl: [PASS][65] -> [ABORT][66] ([i915#8875]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-rkl-4/igt@gem_ppgtt@shrink-vs-evict-any.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-2/igt@gem_ppgtt@shrink-vs-evict-any.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-2/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#4270]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][69] ([i915#4270]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-3/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4270]) +1 similar issue [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_readwrite@beyond-eob: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3282]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-1/igt@gem_readwrite@beyond-eob.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#8411]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_spin_batch@spin-each: - shard-mtlp: [PASS][73] -> [DMESG-FAIL][74] ([i915#8962] / [i915#9121]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-2/igt@gem_spin_batch@spin-each.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-4/igt@gem_spin_batch@spin-each.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3297]) +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-4/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297]) +1 similar issue [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-3/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglu: NOTRUN -> [SKIP][77] ([i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-9/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@vma-merge: - shard-dg2: NOTRUN -> [FAIL][78] ([i915#3318]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-10/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_linear_blits: - shard-dg2: NOTRUN -> [SKIP][79] ([fdo#109289]) +3 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-1/igt@gen3_render_linear_blits.html - shard-rkl: NOTRUN -> [SKIP][80] ([fdo#109289]) +3 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-7/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@batch-without-end: - shard-tglu: NOTRUN -> [SKIP][81] ([fdo#109289]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-8/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#2856]) +3 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-1/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#2856]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-3/igt@gen9_exec_parse@secure-batches.html * igt@i915_module_load@load: - shard-snb: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#6227]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-snb1/igt@i915_module_load@load.html - shard-tglu: NOTRUN -> [SKIP][86] ([i915#6227]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-7/igt@i915_module_load@load.html - shard-rkl: NOTRUN -> [SKIP][87] ([i915#6227]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-4/igt@i915_module_load@load.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#6412]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-7/igt@i915_module_load@resize-bar.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#7091]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-6/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#658]) +1 similar issue [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-1/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#5978]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-10/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: NOTRUN -> [WARN][92] ([i915#2681]) +3 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [PASS][93] -> [FAIL][94] ([i915#3591]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [PASS][95] -> [SKIP][96] ([i915#1397]) +1 similar issue [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-dg1-17/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#1397]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-7/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-dg2: NOTRUN -> [SKIP][98] ([fdo#109506]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-2/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#1397]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rps@min-max-config-loaded: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#6621]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-1/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#8925]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-10/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#4387]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-6/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@live@gt_heartbeat: - shard-glk: [PASS][103] -> [DMESG-FAIL][104] ([i915#5334]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-glk4/igt@i915_selftest@live@gt_heartbeat.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-glk7/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#4212]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-1/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#8709]) +11 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#404]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][108] ([fdo#111615] / [i915#5286]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-8/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][109] ([fdo#111614]) +2 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#5286]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-mtlp: [PASS][111] -> [FAIL][112] ([i915#3743]) +2 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-3/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-0-hflip: - shard-mtlp: NOTRUN -> [FAIL][113] ([i915#5138]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/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-180-hflip: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5286]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][115] ([fdo#111614] / [i915#3638]) +1 similar issue [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][116] ([fdo#111614]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-2/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][117] ([fdo#111615]) +2 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-5/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#5190]) +10 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][119] ([fdo#110723]) +2 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5190]) +4 similar issues [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-yf_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6095]) +3 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-1/igt@kms_ccs@pipe-a-ccs-on-another-bo-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#3734] / [i915#5354] / [i915#6095]) +3 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-2/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-5/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-4_tiled_mtl_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#5354] / [i915#6095]) +6 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-4/igt@kms_ccs@pipe-b-crc-primary-basic-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-2/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#5354] / [i915#6095]) +8 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#3886] / [i915#6095]) +1 similar issue [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-3/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#5354]) +29 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-11/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html - shard-rkl: NOTRUN -> [SKIP][129] ([i915#5354]) +17 similar issues [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-7/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#3689] / [i915#3886] / [i915#5354]) +11 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-3/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-2/igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#3689] / [i915#5354]) +14 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-12/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][133] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#4087]) +3 similar issues [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][135] ([fdo#111827]) +2 similar issues [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-11/igt@kms_chamelium_color@ctm-green-to-red.html - shard-rkl: NOTRUN -> [SKIP][136] ([fdo#111827]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-1/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#7828]) +3 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#7828]) +6 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#7828]) +5 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-4/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#7828]) +4 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-2/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#3555]) +3 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-1/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#7118]) +4 similar issues [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-1/igt@kms_content_protection@atomic-dpms.html - shard-rkl: NOTRUN -> [SKIP][143] ([i915#7118]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html - shard-tglu: NOTRUN -> [SKIP][144] ([i915#6944] / [i915#7116] / [i915#7118]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-10/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][145] ([i915#7173]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#3359]) +2 similar issues [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#3359]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3555]) +1 similar issue [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3359]) +1 similar issue [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-tglu: NOTRUN -> [SKIP][150] ([i915#3359]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2: NOTRUN -> [SKIP][151] ([fdo#109274] / [i915#5354]) +1 similar issue [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#4103] / [i915#4213]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-mtlp: [PASS][153] -> [FAIL][154] ([i915#8248]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-3/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-7/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][155] ([fdo#111767] / [i915#3546]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3546]) +1 similar issue [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-rkl: NOTRUN -> [SKIP][157] ([fdo#111825]) +2 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html - shard-tglu: NOTRUN -> [SKIP][158] ([fdo#109274]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][159] -> [FAIL][160] ([i915#2346]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][161] -> [FAIL][162] ([i915#2346]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#8812]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#3840]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-8/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-snb: NOTRUN -> [DMESG-WARN][165] ([i915#8841]) +1 similar issue [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-snb2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][166] ([fdo#109274]) +5 similar issues [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-3/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][167] ([fdo#109274] / [fdo#111767]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3637]) +2 similar issues [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-dg1: NOTRUN -> [SKIP][169] ([fdo#111825]) +1 similar issue [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg1-13/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#8381]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-11/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-vga1: - shard-snb: [PASS][171] -> [ABORT][172] ([i915#8865]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-snb5/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-vga1.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-snb7/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#2672]) +2 similar issues [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#2672]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#2672]) +1 similar issue [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [PASS][176] -> [FAIL][177] ([i915#6880]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#8708]) +17 similar issues [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#1825]) +9 similar issues [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][180] ([fdo#111825] / [i915#1825]) +20 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][181] ([fdo#109280]) +9 similar issues [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8708]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#8708]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#3023]) +9 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][185] ([fdo#110189]) +8 similar issues [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3458]) +13 similar issues [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_hdr@bpc-switch: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8228]) +1 similar issue [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-2/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8228]) +1 similar issue [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#6301]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8806]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-12/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#5176]) +7 similar issues [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#5176]) +3 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#5176]) +11 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#5176]) +3 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-6/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#5176]) +9 similar issues [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#5235]) +3 similar issues [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#5235]) +7 similar issues [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg1-13/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][198] ([fdo#109271]) +172 similar issues [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-snb5/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-1: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#5235]) +15 similar issues [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#658]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-9/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][201] ([fdo#111068] / [i915#658]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#658]) +1 similar issue [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@cursor_mmap_cpu: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#1072]) +3 similar issues [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-4/igt@kms_psr@cursor_mmap_cpu.html * igt@kms_psr@primary_page_flip: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#1072]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg1-15/igt@kms_psr@primary_page_flip.html * igt@kms_psr@psr2_sprite_blt: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#1072]) +5 similar issues [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-6/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#5461] / [i915#658]) +1 similar issue [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-10/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#4235]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-3/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#5289]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#4235]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-5/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_selftest@drm_dp_mst: - shard-snb: NOTRUN -> [SKIP][210] ([fdo#109271] / [i915#8661]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-snb2/igt@kms_selftest@drm_dp_mst.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][211] ([i915#5465]) +1 similar issue [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#4098]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#8623]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@universal-plane-pipe-d-functional: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#4070] / [i915#533] / [i915#6768]) +1 similar issue [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-7/igt@kms_universal_plane@universal-plane-pipe-d-functional.html * igt@kms_vblank@pipe-c-query-forked: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#4070] / [i915#6768]) +4 similar issues [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-6/igt@kms_vblank@pipe-c-query-forked.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#8808]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-7/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#2437]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-3/igt@kms_writeback@writeback-fb-id.html - shard-rkl: NOTRUN -> [SKIP][218] ([i915#2437]) +1 similar issue [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-4/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#2437]) +1 similar issue [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-3/igt@kms_writeback@writeback-fb-id.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][220] ([fdo#112283]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-2/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][221] ([i915#6806]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-6/igt@perf_pmu@frequency@gt0.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#3708] / [i915#4077]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-3/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][223] ([fdo#109295] / [i915#3291] / [i915#3708]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-7/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#3291] / [i915#3708]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-2/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][225] ([fdo#109295] / [i915#3708]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-2/igt@prime_vgem@fence-write-hang.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: NOTRUN -> [ABORT][226] ([i915#8521] / [i915#8865]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-3/igt@sysfs_timeslice_duration@timeout@vecs0.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#2575]) +1 similar issue [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg1-17/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-rkl: NOTRUN -> [SKIP][228] ([fdo#109315]) +6 similar issues [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-6/igt@v3d/v3d_job_submission@array-job-submission.html - shard-tglu: NOTRUN -> [SKIP][229] ([fdo#109315] / [i915#2575]) +2 similar issues [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-2/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_submit_cl@valid-multisync-submission: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#2575]) +2 similar issues [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-2/igt@v3d/v3d_submit_cl@valid-multisync-submission.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#2575]) +7 similar issues [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-2/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_mmap@mmap-bo: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#7711]) +2 similar issues [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-1/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_purgeable_bo@mark-purgeable: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#7711]) +2 similar issues [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-6/igt@vc4/vc4_purgeable_bo@mark-purgeable.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#2575]) +1 similar issue [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-7/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html * igt@vc4/vc4_wait_bo@unused-bo-1ns: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#7711]) +4 similar issues [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-2/igt@vc4/vc4_wait_bo@unused-bo-1ns.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][236] ([i915#6268]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@legacy-engines-hostile@vebox: - shard-mtlp: [FAIL][238] ([i915#2410]) -> [PASS][239] +2 similar issues [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-3/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-4/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][240] ([i915#5784]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-dg1-14/igt@gem_eio@reset-stress.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg1-19/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][242] ([i915#2846]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][244] ([i915#2842]) -> [PASS][245] +1 similar issue [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [FAIL][246] ([i915#2842]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fence@parallel@bcs0: - shard-mtlp: [DMESG-FAIL][248] ([i915#8962] / [i915#9121]) -> [PASS][249] +1 similar issue [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-4/igt@gem_exec_fence@parallel@bcs0.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-1/igt@gem_exec_fence@parallel@bcs0.html * igt@gem_exec_fence@parallel@vcs0: - shard-mtlp: [DMESG-WARN][250] ([i915#9121]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-4/igt@gem_exec_fence@parallel@vcs0.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-1/igt@gem_exec_fence@parallel@vcs0.html * igt@gem_exec_fence@parallel@vecs0: - shard-mtlp: [FAIL][252] ([i915#8957]) -> [PASS][253] +2 similar issues [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-4/igt@gem_exec_fence@parallel@vecs0.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-1/igt@gem_exec_fence@parallel@vecs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [ABORT][254] ([i915#7975] / [i915#8213]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-8/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [FAIL][256] ([i915#6268]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-1/igt@gem_userptr_blits@nohangcheck.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-4/igt@gem_userptr_blits@nohangcheck.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [FAIL][258] ([i915#7069]) -> [PASS][259] +1 similar issue [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-7/igt@i915_hangman@gt-engine-hang@vcs0.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-2/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][260] ([i915#8489] / [i915#8668]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [FAIL][262] ([i915#3989] / [i915#454]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-tglu-3/igt@i915_pm_dc@dc6-dpms.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-tglu-9/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][264] ([fdo#109271]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-apl1/igt@i915_pm_dc@dc9-dpms.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-apl4/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: [SKIP][266] ([i915#8403]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-5/igt@i915_pm_rc6_residency@rc6-accuracy.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-8/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@dpms-lpsp: - shard-dg1: [SKIP][268] ([i915#1397]) -> [PASS][269] +1 similar issue [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-dg1-14/igt@i915_pm_rpm@dpms-lpsp.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][270] ([i915#1397]) -> [PASS][271] +1 similar issue [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-2/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@i2c: - shard-dg2: [FAIL][272] ([i915#8717]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-dg2-2/igt@i915_pm_rpm@i2c.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-8/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][274] ([i915#1397]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-dg2-3/igt@i915_pm_rpm@modeset-lpsp.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1: - shard-mtlp: [FAIL][276] ([i915#2521]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [FAIL][278] ([i915#5138]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-mtlp: [FAIL][280] ([i915#3743]) -> [PASS][281] +1 similar issue [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [FAIL][282] ([i915#2346]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-dg2: [FAIL][284] ([i915#6880]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-rkl: [ABORT][286] -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-rkl-4/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_sysfs_edid_timing: - shard-dg2: [FAIL][288] ([IGT#2]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-dg2-1/igt@kms_sysfs_edid_timing.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg2-12/igt@kms_sysfs_edid_timing.html * igt@sysfs_heartbeat_interval@nopreempt@vcs1: - shard-mtlp: [FAIL][290] ([i915#6015]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-mtlp-5/igt@sysfs_heartbeat_interval@nopreempt@vcs1.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-mtlp-1/igt@sysfs_heartbeat_interval@nopreempt@vcs1.html #### Warnings #### * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [INCOMPLETE][292] ([i915#4817]) -> [FAIL][293] ([fdo#103375]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][294] ([i915#7116]) -> [SKIP][295] ([fdo#109300]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-dg1-19/igt@kms_content_protection@mei_interface.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg1-14/igt@kms_content_protection@mei_interface.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][296] ([i915#4816]) -> [SKIP][297] ([i915#4070] / [i915#4816]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][298] ([i915#1072] / [i915#4078]) -> [SKIP][299] ([i915#1072]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13564/shard-dg1-13/igt@kms_psr@cursor_plane_move.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/shard-dg1-19/igt@kms_psr@cursor_plane_move.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [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#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#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#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [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#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#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#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [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#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [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#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [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#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7765]: https://gitlab.freedesktop.org/drm/intel/issues/7765 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 [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#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#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8957]: https://gitlab.freedesktop.org/drm/intel/issues/8957 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7452 -> IGTPW_9655 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13564: f5ad6bdecf116b4640e91047b39766145e40d72e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9655: 9655 IGT_7452: 7452 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9655/index.html [-- Attachment #2: Type: text/html, Size: 94620 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-08-25 16:34 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-25 3:32 [igt-dev] [PATCH i-g-t 0/2] tests/i915/kms_big_joiner: Test Cleanup Karthik B S 2023-08-25 3:32 ` [igt-dev] [PATCH i-g-t 1/2] " Karthik B S 2023-08-25 3:32 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/kms_big_joiner: Make use of big joiner helpers Karthik B S 2023-08-25 5:06 ` [igt-dev] ✗ CI.xeBAT: failure for tests/i915/kms_big_joiner: Test Cleanup Patchwork 2023-08-25 5:14 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-08-25 16:34 ` [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