* [igt-dev] [PATCH i-g-t 0/2] Bug fixes in kms_atomic_transition
@ 2021-03-23 6:16 Karthik B S
2021-03-23 6:16 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_atomic_transition: Fix clean up when subtest fails Karthik B S
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Karthik B S @ 2021-03-23 6:16 UTC (permalink / raw)
To: igt-dev; +Cc: kunal1.joshi, petri.latvala
Fixes for few corner case bugs seen in kms_atomic_transition test.
Karthik B S (2):
tests/kms_atomic_transition: Fix clean up when subtest fails
tests/kms_atomic_transition: Reset the pipe_count variable
tests/kms_atomic_transition.c | 59 ++++++++++++++++++++++++++++-------
1 file changed, 47 insertions(+), 12 deletions(-)
--
2.22.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread* [igt-dev] [PATCH i-g-t 1/2] tests/kms_atomic_transition: Fix clean up when subtest fails 2021-03-23 6:16 [igt-dev] [PATCH i-g-t 0/2] Bug fixes in kms_atomic_transition Karthik B S @ 2021-03-23 6:16 ` Karthik B S 2021-03-29 4:04 ` Joshi, Kunal1 2021-03-23 6:16 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_atomic_transition: Reset the pipe_count variable Karthik B S ` (2 subsequent siblings) 3 siblings, 1 reply; 7+ messages in thread From: Karthik B S @ 2021-03-23 6:16 UTC (permalink / raw) To: igt-dev; +Cc: kunal1.joshi, petri.latvala While running transition tests on a multi display setup, if a subtest fails during commit for some reason on the first connector, all the subsequent subtests on the same pipe fails. This is because the pipe is still connected to the previous connector as the cleanup part will have been skipped during the failed subtest. To fix this, moved the cleanup part to a separate function and calling it outside the subtest scope. Signed-off-by: Karthik B S <karthik.b.s@intel.com> --- tests/kms_atomic_transition.c | 35 +++++++++++++++++++++++++++-------- 1 file changed, 27 insertions(+), 8 deletions(-) diff --git a/tests/kms_atomic_transition.c b/tests/kms_atomic_transition.c index 9689bf4d..90df7e33 100644 --- a/tests/kms_atomic_transition.c +++ b/tests/kms_atomic_transition.c @@ -47,6 +47,7 @@ struct plane_parms { typedef struct { int drm_fd; + struct igt_fb fb, argb_fb, sprite_fb; igt_display_t display; bool extended; } data_t; @@ -420,6 +421,10 @@ static void unprepare_fencing(data_t *data, enum pipe pipe) { igt_plane_t *plane; + /* Make sure these got allocated in the first place */ + if (!timeline) + return; + for_each_plane_on_pipe(&data->display, pipe, plane) close(timeline[plane->index]); @@ -476,7 +481,6 @@ static void run_transition_test(data_t *data, enum pipe pipe, igt_output_t *output, enum transition_type type, bool nonblocking, bool fencing) { - struct igt_fb fb, argb_fb, sprite_fb; drmModeModeInfo *mode, override_mode; igt_plane_t *plane; igt_pipe_t *pipe_obj = &data->display.pipes[pipe]; @@ -502,7 +506,7 @@ run_transition_test(data_t *data, enum pipe pipe, igt_output_t *output, override_mode.flags ^= DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC; igt_create_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, - DRM_FORMAT_XRGB8888, LOCAL_DRM_FORMAT_MOD_NONE, &fb); + DRM_FORMAT_XRGB8888, LOCAL_DRM_FORMAT_MOD_NONE, &data->fb); igt_output_set_pipe(output, pipe); @@ -518,7 +522,7 @@ run_transition_test(data_t *data, enum pipe pipe, igt_output_t *output, igt_display_commit2(&data->display, COMMIT_ATOMIC); - setup_parms(data, pipe, mode, &fb, &argb_fb, &sprite_fb, parms, &iter_max); + setup_parms(data, pipe, mode, &data->fb, &data->argb_fb, &data->sprite_fb, parms, &iter_max); /* * In some configurations the tests may not run to completion with all @@ -583,7 +587,7 @@ run_transition_test(data_t *data, enum pipe pipe, igt_output_t *output, igt_assert(fd_completed(data->drm_fd)); wait_for_transition(data, pipe, false, fencing); } - goto cleanup; + return; } for (i = 0; i < iter_max; i++) { @@ -642,8 +646,12 @@ run_transition_test(data_t *data, enum pipe pipe, igt_output_t *output, } } } +} + +static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output, bool fencing) +{ + igt_plane_t *plane; -cleanup: if (fencing) unprepare_fencing(data, pipe); @@ -654,9 +662,9 @@ cleanup: igt_display_commit2(&data->display, COMMIT_ATOMIC); - igt_remove_fb(data->drm_fd, &fb); - igt_remove_fb(data->drm_fd, &argb_fb); - igt_remove_fb(data->drm_fd, &sprite_fb); + igt_remove_fb(data->drm_fd, &data->fb); + igt_remove_fb(data->drm_fd, &data->argb_fb); + igt_remove_fb(data->drm_fd, &data->sprite_fb); } static void commit_display(data_t *data, unsigned event_mask, bool nonblocking) @@ -1011,6 +1019,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) pipe_count++; igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe)) run_transition_test(&data, pipe, output, TRANSITION_PLANES, false, false); + test_cleanup(&data, pipe, output, false); } } @@ -1022,6 +1031,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) pipe_count++; igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe)) run_transition_test(&data, pipe, output, TRANSITION_PLANES, false, true); + test_cleanup(&data, pipe, output, true); } } @@ -1033,6 +1043,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) pipe_count++; igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe)) run_transition_test(&data, pipe, output, TRANSITION_PLANES, true, false); + test_cleanup(&data, pipe, output, false); } } @@ -1044,6 +1055,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) pipe_count++; igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe)) run_transition_test(&data, pipe, output, TRANSITION_PLANES, true, true); + test_cleanup(&data, pipe, output, true); } } @@ -1056,6 +1068,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) pipe_count++; igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe)) run_transition_test(&data, pipe, output, TRANSITION_AFTER_FREE, true, false); + test_cleanup(&data, pipe, output, false); } } @@ -1068,6 +1081,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) pipe_count++; igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe)) run_transition_test(&data, pipe, output, TRANSITION_AFTER_FREE, true, true); + test_cleanup(&data, pipe, output, true); } } @@ -1087,6 +1101,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe)) run_transition_test(&data, pipe, output, TRANSITION_MODESET, false, false); + test_cleanup(&data, pipe, output, false); } igt_describe("Modeset test for all plane combinations with fencing commit"); @@ -1100,6 +1115,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe)) run_transition_test(&data, pipe, output, TRANSITION_MODESET, false, true); + test_cleanup(&data, pipe, output, true); } igt_describe("Modeset test for all plane combinations on internal panels"); @@ -1113,6 +1129,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe)) run_transition_test(&data, pipe, output, TRANSITION_MODESET_FAST, false, false); + test_cleanup(&data, pipe, output, false); } } @@ -1127,6 +1144,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe)) run_transition_test(&data, pipe, output, TRANSITION_MODESET_FAST, false, true); + test_cleanup(&data, pipe, output, true); } } @@ -1137,6 +1155,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) break; pipe_count++; run_transition_test(&data, pipe, output, TRANSITION_MODESET_DISABLE, false, false); + test_cleanup(&data, pipe, output, false); } igt_describe("Modeset transition tests for combinations of crtc enabled"); -- 2.22.0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] tests/kms_atomic_transition: Fix clean up when subtest fails 2021-03-23 6:16 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_atomic_transition: Fix clean up when subtest fails Karthik B S @ 2021-03-29 4:04 ` Joshi, Kunal1 0 siblings, 0 replies; 7+ messages in thread From: Joshi, Kunal1 @ 2021-03-29 4:04 UTC (permalink / raw) To: B S, Karthik, igt-dev@lists.freedesktop.org; +Cc: Latvala, Petri LGTM Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/kms_atomic_transition: Reset the pipe_count variable 2021-03-23 6:16 [igt-dev] [PATCH i-g-t 0/2] Bug fixes in kms_atomic_transition Karthik B S 2021-03-23 6:16 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_atomic_transition: Fix clean up when subtest fails Karthik B S @ 2021-03-23 6:16 ` Karthik B S 2021-03-25 4:05 ` Kunal Joshi 2021-03-23 8:09 ` [igt-dev] ✓ Fi.CI.BAT: success for Bug fixes in kms_atomic_transition Patchwork 2021-03-24 0:19 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 1 reply; 7+ messages in thread From: Karthik B S @ 2021-03-23 6:16 UTC (permalink / raw) To: igt-dev; +Cc: kunal1.joshi, petri.latvala The pipe_count variable is not being reset after every subtest. This is not causing any issue when running the subtests individually, but when running the full test only the first subtest runs and all the other subtests get skipped. To fix this, reset the pipe_count variable after every subtest. Signed-off-by: Karthik B S <karthik.b.s@intel.com> --- tests/kms_atomic_transition.c | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/tests/kms_atomic_transition.c b/tests/kms_atomic_transition.c index 90df7e33..431824d0 100644 --- a/tests/kms_atomic_transition.c +++ b/tests/kms_atomic_transition.c @@ -1002,7 +1002,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) } igt_describe("Check toggling of primary plane with vblank"); - igt_subtest("plane-primary-toggle-with-vblank-wait") + igt_subtest("plane-primary-toggle-with-vblank-wait") { for_each_pipe_with_valid_output(&data.display, pipe, output) { if (pipe_count == 2 * count && !data.extended) break; @@ -1010,6 +1010,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) run_primary_test(&data, pipe, output); } + pipe_count = 0; + } igt_describe("Transition test for all plane combinations"); igt_subtest_with_dynamic("plane-all-transition") { @@ -1021,6 +1023,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) run_transition_test(&data, pipe, output, TRANSITION_PLANES, false, false); test_cleanup(&data, pipe, output, false); } + pipe_count = 0; } igt_describe("Transition test for all plane combinations with fencing commit"); @@ -1033,6 +1036,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) run_transition_test(&data, pipe, output, TRANSITION_PLANES, false, true); test_cleanup(&data, pipe, output, true); } + pipe_count = 0; } igt_describe("Transition test for all plane combinations with nonblocking commit"); @@ -1045,6 +1049,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) run_transition_test(&data, pipe, output, TRANSITION_PLANES, true, false); test_cleanup(&data, pipe, output, false); } + pipe_count = 0; } igt_describe("Transition test for all plane combinations with nonblocking and fencing commit"); @@ -1057,6 +1062,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) run_transition_test(&data, pipe, output, TRANSITION_PLANES, true, true); test_cleanup(&data, pipe, output, true); } + pipe_count = 0; } igt_describe("Transition test with non blocking commit and make sure commit of disabled plane has " @@ -1070,6 +1076,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) run_transition_test(&data, pipe, output, TRANSITION_AFTER_FREE, true, false); test_cleanup(&data, pipe, output, false); } + pipe_count = 0; } igt_describe("Transition test with non blocking and fencing commit and make sure commit of " @@ -1083,6 +1090,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) run_transition_test(&data, pipe, output, TRANSITION_AFTER_FREE, true, true); test_cleanup(&data, pipe, output, true); } + pipe_count = 0; } /* @@ -1091,7 +1099,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) * panels with long power cycle delays. */ igt_describe("Modeset test for all plane combinations"); - igt_subtest_with_dynamic("plane-all-modeset-transition") + igt_subtest_with_dynamic("plane-all-modeset-transition") { for_each_pipe_with_valid_output(&data.display, pipe, output) { if (pipe_count == 2 * count && !data.extended) break; @@ -1103,9 +1111,11 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) run_transition_test(&data, pipe, output, TRANSITION_MODESET, false, false); test_cleanup(&data, pipe, output, false); } + pipe_count = 0; + } igt_describe("Modeset test for all plane combinations with fencing commit"); - igt_subtest_with_dynamic("plane-all-modeset-transition-fencing") + igt_subtest_with_dynamic("plane-all-modeset-transition-fencing") { for_each_pipe_with_valid_output(&data.display, pipe, output) { if (pipe_count == 2 * count && !data.extended) break; @@ -1117,6 +1127,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) run_transition_test(&data, pipe, output, TRANSITION_MODESET, false, true); test_cleanup(&data, pipe, output, true); } + pipe_count = 0; + } igt_describe("Modeset test for all plane combinations on internal panels"); igt_subtest_with_dynamic("plane-all-modeset-transition-internal-panels") { @@ -1131,6 +1143,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) run_transition_test(&data, pipe, output, TRANSITION_MODESET_FAST, false, false); test_cleanup(&data, pipe, output, false); } + pipe_count = 0; } igt_describe("Modeset test for all plane combinations on internal panels with fencing commit"); @@ -1146,10 +1159,11 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) run_transition_test(&data, pipe, output, TRANSITION_MODESET_FAST, false, true); test_cleanup(&data, pipe, output, true); } + pipe_count = 0; } igt_describe("Check toggling and modeset transition on plane"); - igt_subtest("plane-toggle-modeset-transition") + igt_subtest("plane-toggle-modeset-transition") { for_each_pipe_with_valid_output(&data.display, pipe, output) { if (pipe_count == 2 * count && !data.extended) break; @@ -1157,6 +1171,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) run_transition_test(&data, pipe, output, TRANSITION_MODESET_DISABLE, false, false); test_cleanup(&data, pipe, output, false); } + pipe_count = 0; + } igt_describe("Modeset transition tests for combinations of crtc enabled"); igt_subtest_with_dynamic("modeset-transition") { -- 2.22.0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] tests/kms_atomic_transition: Reset the pipe_count variable 2021-03-23 6:16 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_atomic_transition: Reset the pipe_count variable Karthik B S @ 2021-03-25 4:05 ` Kunal Joshi 0 siblings, 0 replies; 7+ messages in thread From: Kunal Joshi @ 2021-03-25 4:05 UTC (permalink / raw) To: Karthik B S, petri.latvala, igt-dev On 2021-03-23 at 11:46:39 +0530, Karthik B S wrote: > The pipe_count variable is not being reset after every subtest. > This is not causing any issue when running the subtests individually, > but when running the full test only the first subtest runs > and all the other subtests get skipped. > > To fix this, reset the pipe_count variable after every subtest. > > Signed-off-by: Karthik B S <karthik.b.s@intel.com> > --- LGTM Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Bug fixes in kms_atomic_transition 2021-03-23 6:16 [igt-dev] [PATCH i-g-t 0/2] Bug fixes in kms_atomic_transition Karthik B S 2021-03-23 6:16 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_atomic_transition: Fix clean up when subtest fails Karthik B S 2021-03-23 6:16 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_atomic_transition: Reset the pipe_count variable Karthik B S @ 2021-03-23 8:09 ` Patchwork 2021-03-24 0:19 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2021-03-23 8:09 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 5031 bytes --] == Series Details == Series: Bug fixes in kms_atomic_transition URL : https://patchwork.freedesktop.org/series/88315/ State : success == Summary == CI Bug Log - changes from CI_DRM_9882 -> IGTPW_5641 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/index.html Known issues ------------ Here are the changes found in IGTPW_5641 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_cs_nop@sync-fork-compute0: - fi-snb-2600: NOTRUN -> [SKIP][1] ([fdo#109271]) +17 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/fi-snb-2600/igt@amdgpu/amd_cs_nop@sync-fork-compute0.html * igt@gem_flink_basic@basic: - fi-tgl-y: [PASS][2] -> [DMESG-WARN][3] ([i915#402]) +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/fi-tgl-y/igt@gem_flink_basic@basic.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/fi-tgl-y/igt@gem_flink_basic@basic.html * igt@gem_huc_copy@huc-copy: - fi-byt-j1900: NOTRUN -> [SKIP][4] ([fdo#109271]) +27 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/fi-byt-j1900/igt@gem_huc_copy@huc-copy.html * igt@gem_linear_blits@basic: - fi-kbl-8809g: [PASS][5] -> [TIMEOUT][6] ([i915#2502] / [i915#3145]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/fi-kbl-8809g/igt@gem_linear_blits@basic.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/fi-kbl-8809g/igt@gem_linear_blits@basic.html * igt@gem_tiled_fence_blits@basic: - fi-kbl-8809g: [PASS][7] -> [TIMEOUT][8] ([i915#3145]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/fi-kbl-8809g/igt@gem_tiled_fence_blits@basic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/fi-kbl-8809g/igt@gem_tiled_fence_blits@basic.html * igt@kms_chamelium@dp-crc-fast: - fi-kbl-7500u: [PASS][9] -> [FAIL][10] ([i915#1372]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@hdmi-crc-fast: - fi-byt-j1900: NOTRUN -> [SKIP][11] ([fdo#109271] / [fdo#111827]) +8 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/fi-byt-j1900/igt@kms_chamelium@hdmi-crc-fast.html #### Possible fixes #### * igt@gem_mmap_gtt@basic: - fi-tgl-y: [DMESG-WARN][12] ([i915#402]) -> [PASS][13] +1 similar issue [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/fi-tgl-y/igt@gem_mmap_gtt@basic.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/fi-tgl-y/igt@gem_mmap_gtt@basic.html * igt@i915_selftest@live@hangcheck: - fi-snb-2600: [INCOMPLETE][14] ([i915#2782]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/fi-snb-2600/igt@i915_selftest@live@hangcheck.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/fi-snb-2600/igt@i915_selftest@live@hangcheck.html #### Warnings #### * igt@gem_tiled_blits@basic: - fi-kbl-8809g: [TIMEOUT][16] ([i915#2502] / [i915#3145]) -> [TIMEOUT][17] ([i915#3145]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/fi-kbl-8809g/igt@gem_tiled_blits@basic.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/fi-kbl-8809g/igt@gem_tiled_blits@basic.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 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1222]: https://gitlab.freedesktop.org/drm/intel/issues/1222 [i915#1372]: https://gitlab.freedesktop.org/drm/intel/issues/1372 [i915#2502]: https://gitlab.freedesktop.org/drm/intel/issues/2502 [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782 [i915#3145]: https://gitlab.freedesktop.org/drm/intel/issues/3145 [i915#3277]: https://gitlab.freedesktop.org/drm/intel/issues/3277 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 Participating hosts (47 -> 41) ------------------------------ Additional (1): fi-byt-j1900 Missing (7): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-icl-y fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6040 -> IGTPW_5641 CI-20190529: 20190529 CI_DRM_9882: 34f82d5853a3c6467ccf71e055e3432d2b12ecb9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5641: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/index.html IGT_6040: 69b578b6ab0a36750f0d23c223a3487fc88fb6a7 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/index.html [-- Attachment #1.2: Type: text/html, Size: 6209 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Bug fixes in kms_atomic_transition 2021-03-23 6:16 [igt-dev] [PATCH i-g-t 0/2] Bug fixes in kms_atomic_transition Karthik B S ` (2 preceding siblings ...) 2021-03-23 8:09 ` [igt-dev] ✓ Fi.CI.BAT: success for Bug fixes in kms_atomic_transition Patchwork @ 2021-03-24 0:19 ` Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2021-03-24 0:19 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30252 bytes --] == Series Details == Series: Bug fixes in kms_atomic_transition URL : https://patchwork.freedesktop.org/series/88315/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9882_full -> IGTPW_5641_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5641_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5641_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_5641/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5641_full: ### IGT changes ### #### Possible regressions #### * igt@prime_vgem@basic-userptr: - shard-apl: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-apl6/igt@prime_vgem@basic-userptr.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl3/igt@prime_vgem@basic-userptr.html Known issues ------------ Here are the changes found in IGTPW_5641_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_create@create-massive: - shard-snb: NOTRUN -> [DMESG-WARN][3] ([i915#3002]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-snb7/igt@gem_create@create-massive.html * igt@gem_ctx_persistence@engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#1099]) +5 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-snb6/igt@gem_ctx_persistence@engines-hostile-preempt.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: [PASS][5] -> [FAIL][6] ([i915#2842]) +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglb: NOTRUN -> [FAIL][7] ([i915#2842]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb3/igt@gem_exec_fair@basic-none-vip@rcs0.html - shard-glk: NOTRUN -> [FAIL][8] ([i915#2842]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk9/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: [PASS][9] -> [FAIL][10] ([i915#2842]) +3 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-none@vecs0: - shard-apl: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-apl6/igt@gem_exec_fair@basic-none@vecs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl6/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: [PASS][13] -> [FAIL][14] ([i915#2842]) +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-glk4/igt@gem_exec_fair@basic-pace-solo@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk2/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: NOTRUN -> [FAIL][15] ([i915#2849]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@rsvd2-dirt: - shard-tglb: NOTRUN -> [SKIP][16] ([fdo#109283]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb6/igt@gem_exec_params@rsvd2-dirt.html - shard-iclb: NOTRUN -> [SKIP][17] ([fdo#109283]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb1/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-many-active@rcs0: - shard-apl: NOTRUN -> [FAIL][18] ([i915#2389]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl3/igt@gem_exec_reloc@basic-many-active@rcs0.html - shard-tglb: NOTRUN -> [FAIL][19] ([i915#2389]) +4 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb3/igt@gem_exec_reloc@basic-many-active@rcs0.html * igt@gem_exec_reloc@basic-many-active@vcs0: - shard-kbl: NOTRUN -> [FAIL][20] ([i915#2389]) +4 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl4/igt@gem_exec_reloc@basic-many-active@vcs0.html * igt@gem_exec_reloc@basic-parallel: - shard-apl: NOTRUN -> [TIMEOUT][21] ([i915#3183]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl3/igt@gem_exec_reloc@basic-parallel.html * igt@gem_exec_reloc@basic-wide-active@rcs0: - shard-snb: NOTRUN -> [FAIL][22] ([i915#2389]) +5 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-snb2/igt@gem_exec_reloc@basic-wide-active@rcs0.html * igt@gem_exec_reloc@basic-wide-active@vcs1: - shard-iclb: NOTRUN -> [FAIL][23] ([i915#2389]) +5 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb1/igt@gem_exec_reloc@basic-wide-active@vcs1.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: - shard-iclb: NOTRUN -> [SKIP][24] ([i915#768]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb4/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_userptr_blits@input-checking: - shard-tglb: NOTRUN -> [DMESG-WARN][25] ([i915#3002]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb3/igt@gem_userptr_blits@input-checking.html - shard-glk: NOTRUN -> [DMESG-WARN][26] ([i915#3002]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk8/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@mmap-offset-invalidate-active@gtt: - shard-iclb: NOTRUN -> [SKIP][27] ([i915#1317]) +3 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb5/igt@gem_userptr_blits@mmap-offset-invalidate-active@gtt.html * igt@gem_userptr_blits@mmap-offset-invalidate-active@wb: - shard-snb: NOTRUN -> [SKIP][28] ([fdo#109271]) +335 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-snb6/igt@gem_userptr_blits@mmap-offset-invalidate-active@wb.html * igt@gem_userptr_blits@mmap-offset-invalidate-active@wc: - shard-tglb: NOTRUN -> [SKIP][29] ([i915#1317]) +3 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb7/igt@gem_userptr_blits@mmap-offset-invalidate-active@wc.html * igt@gem_userptr_blits@vma-merge: - shard-apl: NOTRUN -> [INCOMPLETE][30] ([i915#2502] / [i915#2667]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl2/igt@gem_userptr_blits@vma-merge.html * igt@gen9_exec_parse@allowed-all: - shard-kbl: [PASS][31] -> [DMESG-WARN][32] ([i915#1436] / [i915#716]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-kbl1/igt@gen9_exec_parse@allowed-all.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl6/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-tglb: NOTRUN -> [SKIP][33] ([fdo#112306]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb8/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-zero-length: - shard-iclb: NOTRUN -> [SKIP][34] ([fdo#112306]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb4/igt@gen9_exec_parse@batch-zero-length.html * igt@i915_pm_lpsp@screens-disabled: - shard-tglb: NOTRUN -> [SKIP][35] ([i915#1902]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb6/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_selftest@live@hangcheck: - shard-snb: [PASS][36] -> [INCOMPLETE][37] ([i915#2782]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-snb7/igt@i915_selftest@live@hangcheck.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-snb2/igt@i915_selftest@live@hangcheck.html * igt@kms_atomic_transition@modeset-transition@2x-outputs: - shard-glk: [PASS][38] -> [DMESG-WARN][39] ([i915#118] / [i915#95]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-glk4/igt@kms_atomic_transition@modeset-transition@2x-outputs.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk2/igt@kms_atomic_transition@modeset-transition@2x-outputs.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][40] ([fdo#111614]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb8/igt@kms_big_fb@linear-8bpp-rotate-90.html - shard-iclb: NOTRUN -> [SKIP][41] ([fdo#110725] / [fdo#111614]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb8/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_joiner@basic: - shard-apl: NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#2705]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl1/igt@kms_big_joiner@basic.html * igt@kms_chamelium@hdmi-crc-single: - shard-glk: NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +6 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk4/igt@kms_chamelium@hdmi-crc-single.html * igt@kms_chamelium@hdmi-mode-timings: - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) +3 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb6/igt@kms_chamelium@hdmi-mode-timings.html * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red: - shard-snb: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +20 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-snb5/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html * igt@kms_color_chamelium@pipe-a-degamma: - shard-kbl: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +10 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl4/igt@kms_color_chamelium@pipe-a-degamma.html * igt@kms_color_chamelium@pipe-c-ctm-0-25: - shard-apl: NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +18 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl7/igt@kms_color_chamelium@pipe-c-ctm-0-25.html * igt@kms_color_chamelium@pipe-d-ctm-limited-range: - shard-tglb: NOTRUN -> [SKIP][48] ([fdo#109284] / [fdo#111827]) +9 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb5/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html * igt@kms_content_protection@content_type_change: - shard-iclb: NOTRUN -> [SKIP][49] ([fdo#109300] / [fdo#111066]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb6/igt@kms_content_protection@content_type_change.html * igt@kms_content_protection@uevent: - shard-tglb: NOTRUN -> [SKIP][50] ([fdo#111828]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb8/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@pipe-a-cursor-256x85-onscreen: - shard-kbl: [PASS][51] -> [FAIL][52] ([i915#54]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-256x85-onscreen.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-256x85-onscreen.html - shard-glk: [PASS][53] -> [FAIL][54] ([i915#54]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-glk2/igt@kms_cursor_crc@pipe-a-cursor-256x85-onscreen.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk3/igt@kms_cursor_crc@pipe-a-cursor-256x85-onscreen.html * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-kbl: NOTRUN -> [DMESG-WARN][55] ([i915#180]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html * igt@kms_cursor_crc@pipe-b-cursor-512x512-sliding: - shard-iclb: NOTRUN -> [SKIP][56] ([fdo#109278] / [fdo#109279]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb8/igt@kms_cursor_crc@pipe-b-cursor-512x512-sliding.html * igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen: - shard-tglb: NOTRUN -> [SKIP][57] ([fdo#109279]) +3 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: NOTRUN -> [INCOMPLETE][58] ([i915#180] / [i915#1982]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html - shard-kbl: [PASS][59] -> [INCOMPLETE][60] ([i915#155] / [i915#180] / [i915#636]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-iclb: NOTRUN -> [SKIP][61] ([fdo#109274]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb6/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][62] -> [FAIL][63] ([i915#79]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-suspend-interruptible@b-dp1: - shard-apl: [PASS][64] -> [DMESG-WARN][65] ([i915#180]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: - shard-apl: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#2642]) +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html - shard-glk: NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#2642]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-kbl: [PASS][68] -> [FAIL][69] ([i915#2546] / [i915#49]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk: [PASS][70] -> [FAIL][71] ([i915#49]) +1 similar issue [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-glk3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109280]) +12 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt: - shard-tglb: NOTRUN -> [SKIP][73] ([fdo#111825]) +18 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-kbl: NOTRUN -> [SKIP][74] ([fdo#109271]) +66 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite: - shard-apl: NOTRUN -> [SKIP][75] ([fdo#109271]) +197 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-glk: NOTRUN -> [SKIP][76] ([fdo#109271]) +43 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglb: NOTRUN -> [SKIP][77] ([i915#1839]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d: - shard-apl: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#533]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl8/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][79] ([fdo#108145] / [i915#265]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl7/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-c-alpha-7efc: - shard-kbl: NOTRUN -> [FAIL][80] ([fdo#108145] / [i915#265]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl7/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html * igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max: - shard-iclb: NOTRUN -> [SKIP][81] ([fdo#109278]) +3 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb6/igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max.html * igt@kms_plane_multiple@atomic-pipe-b-tiling-yf: - shard-tglb: NOTRUN -> [SKIP][82] ([fdo#111615]) +3 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb7/igt@kms_plane_multiple@atomic-pipe-b-tiling-yf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1: - shard-glk: NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#658]) +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: - shard-apl: NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#658]) +4 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3: - shard-kbl: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#658]) +2 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-3: - shard-iclb: NOTRUN -> [SKIP][86] ([i915#658]) +1 similar issue [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html * igt@kms_psr@psr2_cursor_plane_move: - shard-iclb: NOTRUN -> [SKIP][87] ([fdo#109441]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb5/igt@kms_psr@psr2_cursor_plane_move.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-iclb: [PASS][88] -> [SKIP][89] ([fdo#109441]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb7/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_sysfs_edid_timing: - shard-kbl: NOTRUN -> [FAIL][90] ([IGT#2]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl1/igt@kms_sysfs_edid_timing.html * igt@kms_vrr@flipline: - shard-tglb: NOTRUN -> [SKIP][91] ([fdo#109502]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb3/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-check-output: - shard-apl: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#2437]) +2 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl6/igt@kms_writeback@writeback-check-output.html - shard-iclb: NOTRUN -> [SKIP][93] ([i915#2437]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb8/igt@kms_writeback@writeback-check-output.html - shard-tglb: NOTRUN -> [SKIP][94] ([i915#2437]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb3/igt@kms_writeback@writeback-check-output.html - shard-glk: NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#2437]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-kbl: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#2437]) +1 similar issue [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl6/igt@kms_writeback@writeback-fb-id.html * igt@perf@per-context-mode-unprivileged: - shard-tglb: NOTRUN -> [SKIP][97] ([fdo#109289]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb7/igt@perf@per-context-mode-unprivileged.html * igt@prime_nv_api@nv_i915_reimport_twice_check_flink_name: - shard-tglb: NOTRUN -> [SKIP][98] ([fdo#109291]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb7/igt@prime_nv_api@nv_i915_reimport_twice_check_flink_name.html * igt@sysfs_clients@sema-10@rcs0: - shard-glk: NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#3026]) +2 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk7/igt@sysfs_clients@sema-10@rcs0.html * igt@sysfs_clients@split-10@bcs0: - shard-glk: [PASS][100] -> [SKIP][101] ([fdo#109271] / [i915#3026]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-glk7/igt@sysfs_clients@split-10@bcs0.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk6/igt@sysfs_clients@split-10@bcs0.html - shard-apl: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#3026]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl7/igt@sysfs_clients@split-10@bcs0.html #### Possible fixes #### * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][103] ([i915#2846]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-glk2/igt@gem_exec_fair@basic-deadline.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk1/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][105] ([i915#2842]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-glk3/igt@gem_exec_fair@basic-none-share@rcs0.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-kbl: [FAIL][107] ([i915#2842]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-kbl6/igt@gem_exec_fair@basic-none-vip@rcs0.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl7/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: [SKIP][109] ([fdo#109271]) -> [PASS][110] +1 similar issue [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl4/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_schedule@u-fairslice@vcs0: - shard-apl: [DMESG-WARN][111] ([i915#1610]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-apl3/igt@gem_exec_schedule@u-fairslice@vcs0.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl8/igt@gem_exec_schedule@u-fairslice@vcs0.html * igt@gem_exec_whisper@basic-queues-all: - shard-glk: [DMESG-WARN][113] ([i915#118] / [i915#95]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-glk6/igt@gem_exec_whisper@basic-queues-all.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk7/igt@gem_exec_whisper@basic-queues-all.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [SKIP][115] ([i915#2190]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-tglb6/igt@gem_huc_copy@huc-copy.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb2/igt@gem_huc_copy@huc-copy.html * igt@gem_vm_create@destroy-race: - shard-tglb: [TIMEOUT][117] ([i915#2795]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-tglb5/igt@gem_vm_create@destroy-race.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb6/igt@gem_vm_create@destroy-race.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][119] ([i915#454]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-iclb8/igt@i915_pm_dc@dc6-psr.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb5/igt@i915_pm_dc@dc6-psr.html * igt@i915_suspend@sysfs-reader: - shard-apl: [DMESG-WARN][121] ([i915#180]) -> [PASS][122] +2 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-apl8/igt@i915_suspend@sysfs-reader.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl2/igt@i915_suspend@sysfs-reader.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-glk: [FAIL][123] -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-glk5/igt@kms_big_fb@linear-64bpp-rotate-180.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-glk9/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_cursor_crc@pipe-a-cursor-dpms: - shard-kbl: [FAIL][125] ([i915#54]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-dpms.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-dpms.html - shard-apl: [FAIL][127] ([i915#54]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-apl1/igt@kms_cursor_crc@pipe-a-cursor-dpms.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl6/igt@kms_cursor_crc@pipe-a-cursor-dpms.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-tglb: [FAIL][129] ([i915#2598]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-tglb3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-tglb3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: [DMESG-WARN][131] ([i915#180]) -> [PASS][132] +3 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-iclb: [SKIP][133] ([fdo#109441]) -> [PASS][134] +2 similar issues [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@sysfs_clients@sema-10@rcs0: - shard-apl: [SKIP][135] ([fdo#109271] / [i915#3026]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-apl6/igt@sysfs_clients@sema-10@rcs0.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-apl3/igt@sysfs_clients@sema-10@rcs0.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-fence: - shard-iclb: [WARN][137] ([i915#1804] / [i915#2684]) -> [WARN][138] ([i915#2681] / [i915#2684]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-iclb4/igt@i915_pm_rc6_residency@rc6-fence.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb8/igt@i915_pm_rc6_residency@rc6-fence.html * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: [DMESG-WARN][139] ([i915#1226]) -> [SKIP][140] ([fdo#109349]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9882/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/shard-iclb7/igt@kms_dp_dsc@basic-dsc-enable-edp.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-0: - shard-iclb: [SKIP][141] ([i915#658]) -> [SKIP][142] ([i915#2920]) [141]: https://intel- == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5641/index.html [-- Attachment #1.2: Type: text/html, Size: 33664 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2021-03-29 4:04 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-03-23 6:16 [igt-dev] [PATCH i-g-t 0/2] Bug fixes in kms_atomic_transition Karthik B S 2021-03-23 6:16 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_atomic_transition: Fix clean up when subtest fails Karthik B S 2021-03-29 4:04 ` Joshi, Kunal1 2021-03-23 6:16 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_atomic_transition: Reset the pipe_count variable Karthik B S 2021-03-25 4:05 ` Kunal Joshi 2021-03-23 8:09 ` [igt-dev] ✓ Fi.CI.BAT: success for Bug fixes in kms_atomic_transition Patchwork 2021-03-24 0:19 ` [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