* [igt-dev] [v2 0/2] tests/kms_universal_plane: Dynamic conversion
@ 2023-09-28 15:56 Swati Sharma
2023-09-28 15:56 ` [igt-dev] [v2 1/2] tests/kms_universal_plane: convert subtests to dynamic subtests Swati Sharma
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: Swati Sharma @ 2023-09-28 15:56 UTC (permalink / raw)
To: igt-dev
Convert subtests to dynamic subtests and update documentation
accordingly.
Swati Sharma (2):
tests/kms_universal_plane: convert subtests to dynamic subtests
tests/kms_universal_plane: update testplan doc
tests/kms_universal_plane.c | 150 ++++++++----------------------------
1 file changed, 34 insertions(+), 116 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [igt-dev] [v2 1/2] tests/kms_universal_plane: convert subtests to dynamic subtests 2023-09-28 15:56 [igt-dev] [v2 0/2] tests/kms_universal_plane: Dynamic conversion Swati Sharma @ 2023-09-28 15:56 ` Swati Sharma 2023-10-05 12:10 ` Modem, Bhanuprakash 2023-09-28 15:56 ` [igt-dev] [v2 2/2] tests/kms_universal_plane: update testplan doc Swati Sharma ` (5 subsequent siblings) 6 siblings, 1 reply; 9+ messages in thread From: Swati Sharma @ 2023-09-28 15:56 UTC (permalink / raw) To: igt-dev Convert subtests to dynamic subtests. v2: -use igt_output_name() -use igt_subtest_with_dynamic() Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/kms_universal_plane.c | 112 +++++++++--------------------------- 1 file changed, 26 insertions(+), 86 deletions(-) diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c index 8aa43a929..7dbbaba00 100644 --- a/tests/kms_universal_plane.c +++ b/tests/kms_universal_plane.c @@ -200,11 +200,6 @@ functional_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output) int num_primary = 0, num_cursor = 0; int i; - igt_require_pipe(display, pipe); - - igt_info("Testing connector %s using pipe %s\n", igt_output_name(output), - kmstest_pipe_name(pipe)); - functional_test_init(&test, output, pipe); /* @@ -443,11 +438,6 @@ sanity_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output) int i; int expect = 0; - igt_require_pipe(&data->display, pipe); - - igt_info("Using (pipe %s + %s) to run the subtest.\n", - kmstest_pipe_name(pipe), igt_output_name(output)); - igt_output_set_pipe(output, pipe); mode = igt_output_get_mode(output); @@ -560,11 +550,6 @@ pageflip_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output) fd_set fds; int ret = 0; - igt_require_pipe(&data->display, pipe); - - igt_info("Using (pipe %s + %s) to run the subtest.\n", - kmstest_pipe_name(pipe), igt_output_name(output)); - igt_output_set_pipe(output, pipe); pageflip_test_init(&test, output, pipe); @@ -676,13 +661,9 @@ cursor_leak_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output) int r, g, b; int count1, count2; - igt_require_pipe(display, pipe); igt_require(display->has_cursor_plane); igt_require_intel(data->drm_fd); - igt_info("Using (pipe %s + %s) to run the subtest.\n", - kmstest_pipe_name(pipe), igt_output_name(output)); - igt_output_set_pipe(output, pipe); mode = igt_output_get_mode(output); @@ -717,7 +698,6 @@ cursor_leak_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output) igt_skip("Primary and/or cursor are unavailable\n"); } - igt_plane_set_fb(primary, &background_fb); igt_display_commit2(display, COMMIT_LEGACY); @@ -807,12 +787,6 @@ pageflip_win_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output) int ret = 0; - igt_skip_on(is_intel_device(data->drm_fd) && data->display_ver < 9); - igt_require_pipe(&data->display, pipe); - - igt_info("Using (pipe %s + %s) to run the subtest.\n", - kmstest_pipe_name(pipe), igt_output_name(output)); - igt_output_set_pipe(output, pipe); gen9_test_init(&test, output, pipe); @@ -865,103 +839,72 @@ pipe_output_combo_valid(igt_display_t *display, } static void -run_tests_for_pipe(data_t *data, enum pipe pipe) +run_tests(data_t *data) { igt_output_t *output; - - igt_fixture { - int valid_tests = 0; - - igt_require_pipe(&data->display, pipe); - - for_each_valid_output_on_pipe(&data->display, pipe, output) - valid_tests++; - - igt_require_f(valid_tests, "no valid crtc/connector combinations found\n"); - } + enum pipe pipe; igt_describe("Check the switching between different primary plane fbs with CRTC off"); - igt_subtest_f("universal-plane-pipe-%s-functional", - kmstest_pipe_name(pipe)) { - bool found = false; - - for_each_valid_output_on_pipe(&data->display, pipe, output) { + igt_subtest_with_dynamic("universal-plane-functional") { + for_each_pipe_with_single_output(&data->display, pipe, output) { if (!pipe_output_combo_valid(&data->display, pipe, output)) continue; - found = true; - functional_test_pipe(data, pipe, output); + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) + functional_test_pipe(data, pipe, output); } - igt_require_f(found, "No valid pipe/output combo found.\n"); } igt_describe("Test for scale-up or scale-down using universal plane API without covering CRTC"); - igt_subtest_f("universal-plane-pipe-%s-sanity", - kmstest_pipe_name(pipe)) { - bool found = false; - - for_each_valid_output_on_pipe(&data->display, pipe, output) { + igt_subtest_with_dynamic("universal-plane-sanity") { + for_each_pipe_with_single_output(&data->display, pipe, output) { if (!pipe_output_combo_valid(&data->display, pipe, output)) continue; - found = true; - sanity_test_pipe(data, pipe, output); + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) + sanity_test_pipe(data, pipe, output); } - igt_require_f(found, "No valid pipe/output combo found.\n"); } igt_describe("Check pageflips while primary plane is disabled before IOCTL or between IOCTL" - " and pageflip execution"); - igt_subtest_f("disable-primary-vs-flip-pipe-%s", - kmstest_pipe_name(pipe)) { - bool found = false; - - for_each_valid_output_on_pipe(&data->display, pipe, output) { + " and pageflip execution"); + igt_subtest_with_dynamic("disable-primary-vs-flip") { + for_each_pipe_with_single_output(&data->display, pipe, output) { if (!pipe_output_combo_valid(&data->display, pipe, output)) continue; - found = true; - pageflip_test_pipe(data, pipe, output); + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) + pageflip_test_pipe(data, pipe, output); } - igt_require_f(found, "No valid pipe/output combo found.\n"); } igt_describe("Check for cursor leaks after performing cursor operations"); - igt_subtest_f("cursor-fb-leak-pipe-%s", - kmstest_pipe_name(pipe)) { - bool found = false; - - for_each_valid_output_on_pipe(&data->display, pipe, output) { + igt_subtest_with_dynamic("cursor-fb-leak") { + for_each_pipe_with_single_output(&data->display, pipe, output) { if (!pipe_output_combo_valid(&data->display, pipe, output)) continue; - found = true; - cursor_leak_test_pipe(data, pipe, output); + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) + cursor_leak_test_pipe(data, pipe, output); } - igt_require_f(found, "No valid pipe/output combo found.\n"); } igt_describe("Check if pageflip succeeds in windowed setting"); - igt_subtest_f("universal-plane-pageflip-windowed-pipe-%s", - kmstest_pipe_name(pipe)) { - bool found = false; - - for_each_valid_output_on_pipe(&data->display, pipe, output) { + igt_subtest_with_dynamic("universal-plane-pageflip-windowed") { + igt_require(is_intel_device(data->drm_fd) && data->display_ver >= 9); + for_each_pipe_with_single_output(&data->display, pipe, output) { if (!pipe_output_combo_valid(&data->display, pipe, output)) continue; - found = true; - pageflip_win_test_pipe(data, pipe, output); + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) + pageflip_win_test_pipe(data, pipe, output); } - igt_require_f(found, "No valid pipe/output combo found.\n"); } } -static data_t data; - igt_main { - enum pipe pipe; + data_t data; igt_fixture { data.drm_fd = drm_open_driver_master(DRIVER_ANY); @@ -975,10 +918,7 @@ igt_main igt_display_require_output(&data.display); } - for_each_pipe_static(pipe) { - igt_subtest_group - run_tests_for_pipe(&data, pipe); - } + run_tests(&data); igt_fixture { igt_display_fini(&data.display); -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [igt-dev] [v2 1/2] tests/kms_universal_plane: convert subtests to dynamic subtests 2023-09-28 15:56 ` [igt-dev] [v2 1/2] tests/kms_universal_plane: convert subtests to dynamic subtests Swati Sharma @ 2023-10-05 12:10 ` Modem, Bhanuprakash 0 siblings, 0 replies; 9+ messages in thread From: Modem, Bhanuprakash @ 2023-10-05 12:10 UTC (permalink / raw) To: Swati Sharma, igt-dev On Thu-28-09-2023 09:26 pm, Swati Sharma wrote: > Convert subtests to dynamic subtests. > > v2: -use igt_output_name() > -use igt_subtest_with_dynamic() > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > --- > tests/kms_universal_plane.c | 112 +++++++++--------------------------- > 1 file changed, 26 insertions(+), 86 deletions(-) > > diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c > index 8aa43a929..7dbbaba00 100644 > --- a/tests/kms_universal_plane.c > +++ b/tests/kms_universal_plane.c > @@ -200,11 +200,6 @@ functional_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output) > int num_primary = 0, num_cursor = 0; > int i; > > - igt_require_pipe(display, pipe); > - > - igt_info("Testing connector %s using pipe %s\n", igt_output_name(output), > - kmstest_pipe_name(pipe)); > - > functional_test_init(&test, output, pipe); > > /* > @@ -443,11 +438,6 @@ sanity_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output) > int i; > int expect = 0; > > - igt_require_pipe(&data->display, pipe); > - > - igt_info("Using (pipe %s + %s) to run the subtest.\n", > - kmstest_pipe_name(pipe), igt_output_name(output)); > - > igt_output_set_pipe(output, pipe); > mode = igt_output_get_mode(output); > > @@ -560,11 +550,6 @@ pageflip_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output) > fd_set fds; > int ret = 0; > > - igt_require_pipe(&data->display, pipe); > - > - igt_info("Using (pipe %s + %s) to run the subtest.\n", > - kmstest_pipe_name(pipe), igt_output_name(output)); > - > igt_output_set_pipe(output, pipe); > > pageflip_test_init(&test, output, pipe); > @@ -676,13 +661,9 @@ cursor_leak_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output) > int r, g, b; > int count1, count2; > > - igt_require_pipe(display, pipe); > igt_require(display->has_cursor_plane); > igt_require_intel(data->drm_fd); > > - igt_info("Using (pipe %s + %s) to run the subtest.\n", > - kmstest_pipe_name(pipe), igt_output_name(output)); > - > igt_output_set_pipe(output, pipe); > mode = igt_output_get_mode(output); > > @@ -717,7 +698,6 @@ cursor_leak_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output) > igt_skip("Primary and/or cursor are unavailable\n"); > } > > - > igt_plane_set_fb(primary, &background_fb); > igt_display_commit2(display, COMMIT_LEGACY); > > @@ -807,12 +787,6 @@ pageflip_win_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output) > > int ret = 0; > > - igt_skip_on(is_intel_device(data->drm_fd) && data->display_ver < 9); > - igt_require_pipe(&data->display, pipe); > - > - igt_info("Using (pipe %s + %s) to run the subtest.\n", > - kmstest_pipe_name(pipe), igt_output_name(output)); > - > igt_output_set_pipe(output, pipe); > > gen9_test_init(&test, output, pipe); > @@ -865,103 +839,72 @@ pipe_output_combo_valid(igt_display_t *display, > } > > static void > -run_tests_for_pipe(data_t *data, enum pipe pipe) > +run_tests(data_t *data) > { > igt_output_t *output; > - > - igt_fixture { > - int valid_tests = 0; > - > - igt_require_pipe(&data->display, pipe); > - > - for_each_valid_output_on_pipe(&data->display, pipe, output) > - valid_tests++; > - > - igt_require_f(valid_tests, "no valid crtc/connector combinations found\n"); > - } > + enum pipe pipe; > > igt_describe("Check the switching between different primary plane fbs with CRTC off"); > - igt_subtest_f("universal-plane-pipe-%s-functional", > - kmstest_pipe_name(pipe)) { > - bool found = false; > - > - for_each_valid_output_on_pipe(&data->display, pipe, output) { > + igt_subtest_with_dynamic("universal-plane-functional") { > + for_each_pipe_with_single_output(&data->display, pipe, output) { > if (!pipe_output_combo_valid(&data->display, pipe, output)) > continue; > > - found = true; > - functional_test_pipe(data, pipe, output); > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) > + functional_test_pipe(data, pipe, output); > } > - igt_require_f(found, "No valid pipe/output combo found.\n"); > } > > igt_describe("Test for scale-up or scale-down using universal plane API without covering CRTC"); > - igt_subtest_f("universal-plane-pipe-%s-sanity", > - kmstest_pipe_name(pipe)) { > - bool found = false; > - > - for_each_valid_output_on_pipe(&data->display, pipe, output) { > + igt_subtest_with_dynamic("universal-plane-sanity") { > + for_each_pipe_with_single_output(&data->display, pipe, output) { > if (!pipe_output_combo_valid(&data->display, pipe, output)) > continue; > > - found = true; > - sanity_test_pipe(data, pipe, output); > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) > + sanity_test_pipe(data, pipe, output); > } > - igt_require_f(found, "No valid pipe/output combo found.\n"); > } > > igt_describe("Check pageflips while primary plane is disabled before IOCTL or between IOCTL" > - " and pageflip execution"); > - igt_subtest_f("disable-primary-vs-flip-pipe-%s", > - kmstest_pipe_name(pipe)) { > - bool found = false; > - > - for_each_valid_output_on_pipe(&data->display, pipe, output) { > + " and pageflip execution"); > + igt_subtest_with_dynamic("disable-primary-vs-flip") { > + for_each_pipe_with_single_output(&data->display, pipe, output) { > if (!pipe_output_combo_valid(&data->display, pipe, output)) > continue; > > - found = true; > - pageflip_test_pipe(data, pipe, output); > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) > + pageflip_test_pipe(data, pipe, output); > } > - igt_require_f(found, "No valid pipe/output combo found.\n"); > } > > igt_describe("Check for cursor leaks after performing cursor operations"); > - igt_subtest_f("cursor-fb-leak-pipe-%s", > - kmstest_pipe_name(pipe)) { > - bool found = false; > - > - for_each_valid_output_on_pipe(&data->display, pipe, output) { > + igt_subtest_with_dynamic("cursor-fb-leak") { > + for_each_pipe_with_single_output(&data->display, pipe, output) { > if (!pipe_output_combo_valid(&data->display, pipe, output)) > continue; > > - found = true; > - cursor_leak_test_pipe(data, pipe, output); > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) > + cursor_leak_test_pipe(data, pipe, output); > } > - igt_require_f(found, "No valid pipe/output combo found.\n"); > } > > igt_describe("Check if pageflip succeeds in windowed setting"); > - igt_subtest_f("universal-plane-pageflip-windowed-pipe-%s", > - kmstest_pipe_name(pipe)) { > - bool found = false; > - > - for_each_valid_output_on_pipe(&data->display, pipe, output) { > + igt_subtest_with_dynamic("universal-plane-pageflip-windowed") { > + igt_require(is_intel_device(data->drm_fd) && data->display_ver >= 9); > + for_each_pipe_with_single_output(&data->display, pipe, output) { > if (!pipe_output_combo_valid(&data->display, pipe, output)) > continue; > > - found = true; > - pageflip_win_test_pipe(data, pipe, output); > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) > + pageflip_win_test_pipe(data, pipe, output); > } > - igt_require_f(found, "No valid pipe/output combo found.\n"); > } > } > > -static data_t data; > - > igt_main > { > - enum pipe pipe; > + data_t data; > > igt_fixture { > data.drm_fd = drm_open_driver_master(DRIVER_ANY); > @@ -975,10 +918,7 @@ igt_main > igt_display_require_output(&data.display); > } > > - for_each_pipe_static(pipe) { > - igt_subtest_group > - run_tests_for_pipe(&data, pipe); > - } > + run_tests(&data); > > igt_fixture { > igt_display_fini(&data.display); ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] [v2 2/2] tests/kms_universal_plane: update testplan doc 2023-09-28 15:56 [igt-dev] [v2 0/2] tests/kms_universal_plane: Dynamic conversion Swati Sharma 2023-09-28 15:56 ` [igt-dev] [v2 1/2] tests/kms_universal_plane: convert subtests to dynamic subtests Swati Sharma @ 2023-09-28 15:56 ` Swati Sharma 2023-09-28 16:44 ` [igt-dev] ✓ CI.xeBAT: success for tests/kms_universal_plane: Dynamic conversion (rev2) Patchwork ` (4 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Swati Sharma @ 2023-09-28 15:56 UTC (permalink / raw) To: igt-dev After converting tests to dynamic subtests, hardcoded pipe names are removed. Update testplan documentation accordingly. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/kms_universal_plane.c | 38 ++++++++----------------------------- 1 file changed, 8 insertions(+), 30 deletions(-) diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c index 7dbbaba00..2e8c0cc17 100644 --- a/tests/kms_universal_plane.c +++ b/tests/kms_universal_plane.c @@ -33,43 +33,32 @@ * Category: Display * Description: Check pageflip & modeset on universal plane * - * SUBTEST: cursor-fb-leak-pipe-%s - * Description: Check for cursor leaks after performing cursor operations on %arg[1] + * SUBTEST: cursor-fb-leak + * Description: Check for cursor leaks after performing cursor operations * Driver requirement: i915, xe * Functionality: cursor, plane * Mega feature: General Display Features * Test category: functionality test * - * SUBTEST: disable-primary-vs-flip-pipe-%s + * SUBTEST: disable-primary-vs-flip * Description: Check pageflips while primary plane is disabled before IOCTL or - * between IOCTL and pageflip execution on %arg[1] + * between IOCTL and pageflip execution * Driver requirement: i915, xe * Functionality: plane * Mega feature: General Display Features * Test category: functionality test * - * SUBTEST: universal-plane-pageflip-windowed-pipe-%s - * Description: Check if pageflip succeeds in windowed setting on %arg[1] + * SUBTEST: universal-plane-pageflip-windowed + * Description: Check if pageflip succeeds in windowed setting * Driver requirement: i915, xe * Functionality: plane * Mega feature: General Display Features * Test category: functionality test - * - * arg[1]: - * - * @A: pipe A - * @B: pipe B - * @C: pipe C - * @D: pipe D - * @E: pipe E - * @F: pipe F - * @G: pipe G - * @H: pipe H */ /** - * SUBTEST: universal-plane-pipe-%s-%s - * Description: Check %arg[2] on %arg[1] + * SUBTEST: universal-plane-%s + * Description: Check %arg[1] * Driver requirement: i915, xe * Functionality: plane * Mega feature: General Display Features @@ -77,17 +66,6 @@ * * arg[1]: * - * @A: pipe A - * @B: pipe B - * @C: pipe C - * @D: pipe D - * @E: pipe E - * @F: pipe F - * @G: pipe G - * @H: pipe H - * - * arg[2]: - * * @functional: the switching between different primary plane fbs with CRTC off * @sanity: for scale-up or scale-down using universal plane API without * covering CRTC -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/kms_universal_plane: Dynamic conversion (rev2) 2023-09-28 15:56 [igt-dev] [v2 0/2] tests/kms_universal_plane: Dynamic conversion Swati Sharma 2023-09-28 15:56 ` [igt-dev] [v2 1/2] tests/kms_universal_plane: convert subtests to dynamic subtests Swati Sharma 2023-09-28 15:56 ` [igt-dev] [v2 2/2] tests/kms_universal_plane: update testplan doc Swati Sharma @ 2023-09-28 16:44 ` Patchwork 2023-09-28 16:49 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-09-28 16:44 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5996 bytes --] == Series Details == Series: tests/kms_universal_plane: Dynamic conversion (rev2) URL : https://patchwork.freedesktop.org/series/123851/ State : success == Summary == CI Bug Log - changes from XEIGT_7506_BAT -> XEIGTPW_9891_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (3 -> 4) ------------------------------ Additional (1): bat-pvc-2 Known issues ------------ Here are the changes found in XEIGTPW_9891_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-pvc-2: NOTRUN -> [SKIP][1] ([Intel XE#538]) +33 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9891/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-pvc-2: NOTRUN -> [SKIP][2] ([Intel XE#539]) +7 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9891/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-pvc-2: NOTRUN -> [SKIP][3] ([Intel XE#275] / [Intel XE#541]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9891/bat-pvc-2/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_force_connector_basic@force-connector-state: - bat-pvc-2: NOTRUN -> [SKIP][4] ([Intel XE#540]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9891/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-pvc-2: NOTRUN -> [SKIP][5] ([Intel XE#537]) +6 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9891/bat-pvc-2/igt@kms_pipe_crc_basic@nonblocking-crc.html * igt@kms_prop_blob@basic: - bat-pvc-2: NOTRUN -> [SKIP][6] ([Intel XE#536]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9891/bat-pvc-2/igt@kms_prop_blob@basic.html * igt@kms_psr@primary_page_flip: - bat-pvc-2: NOTRUN -> [SKIP][7] ([Intel XE#535]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9891/bat-pvc-2/igt@kms_psr@primary_page_flip.html * igt@xe_evict@evict-beng-small-external: - bat-pvc-2: NOTRUN -> [FAIL][8] ([Intel XE#389]) +3 other tests fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9891/bat-pvc-2/igt@xe_evict@evict-beng-small-external.html * igt@xe_evict@evict-small-external-cm: - bat-pvc-2: NOTRUN -> [DMESG-FAIL][9] ([Intel XE#482]) +3 other tests dmesg-fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9891/bat-pvc-2/igt@xe_evict@evict-small-external-cm.html * igt@xe_guc_pc@freq_fixed_idle: - bat-pvc-2: NOTRUN -> [SKIP][10] ([Intel XE#533]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9891/bat-pvc-2/igt@xe_guc_pc@freq_fixed_idle.html * igt@xe_huc_copy@huc_copy: - bat-pvc-2: NOTRUN -> [SKIP][11] ([Intel XE#255]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9891/bat-pvc-2/igt@xe_huc_copy@huc_copy.html * igt@xe_intel_bb@render: - bat-pvc-2: NOTRUN -> [SKIP][12] ([Intel XE#532]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9891/bat-pvc-2/igt@xe_intel_bb@render.html * igt@xe_module_load@load: - bat-pvc-2: NOTRUN -> [SKIP][13] ([Intel XE#378]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9891/bat-pvc-2/igt@xe_module_load@load.html * igt@xe_pm_residency@gt-c6-on-idle: - bat-pvc-2: NOTRUN -> [SKIP][14] ([Intel XE#531]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9891/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1: - bat-adlp-7: [FAIL][15] ([Intel XE#480]) -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9891/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#275]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/275 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/389 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/482 [Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531 [Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532 [Intel XE#533]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/533 [Intel XE#535]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/535 [Intel XE#536]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/536 [Intel XE#537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/537 [Intel XE#538]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/538 [Intel XE#539]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/539 [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540 [Intel XE#541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/541 Build changes ------------- * IGT: IGT_7506 -> IGTPW_9891 * Linux: xe-397-bce60b0ff2937cb2ea51841a479bc1a2da65052b -> xe-399-7c58b58522cf124dd324fbf95d9dd838fac36bcb IGTPW_9891: 9891 IGT_7506: 4fdf544bd0a38c5a100ef43c30171827e1c8c442 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-397-bce60b0ff2937cb2ea51841a479bc1a2da65052b: bce60b0ff2937cb2ea51841a479bc1a2da65052b xe-399-7c58b58522cf124dd324fbf95d9dd838fac36bcb: 7c58b58522cf124dd324fbf95d9dd838fac36bcb == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9891/index.html [-- Attachment #2: Type: text/html, Size: 6908 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_universal_plane: Dynamic conversion (rev2) 2023-09-28 15:56 [igt-dev] [v2 0/2] tests/kms_universal_plane: Dynamic conversion Swati Sharma ` (2 preceding siblings ...) 2023-09-28 16:44 ` [igt-dev] ✓ CI.xeBAT: success for tests/kms_universal_plane: Dynamic conversion (rev2) Patchwork @ 2023-09-28 16:49 ` Patchwork 2023-09-29 2:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-09-28 16:49 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 13232 bytes --] == Series Details == Series: tests/kms_universal_plane: Dynamic conversion (rev2) URL : https://patchwork.freedesktop.org/series/123851/ State : success == Summary == CI Bug Log - changes from CI_DRM_13689 -> IGTPW_9891 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/index.html Participating hosts (34 -> 38) ------------------------------ Additional (6): fi-kbl-soraka fi-cfl-8700k fi-apl-guc fi-kbl-guc fi-ivb-3770 fi-skl-6600u Missing (2): bat-dg2-9 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9891 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - fi-kbl-guc: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#1849]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-kbl-guc/igt@fbdev@info.html * igt@gem_busy@busy@all-engines: - bat-mtlp-8: [PASS][2] -> [ABORT][3] ([i915#9414]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/bat-mtlp-8/igt@gem_busy@busy@all-engines.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/bat-mtlp-8/igt@gem_busy@busy@all-engines.html * igt@gem_huc_copy@huc-copy: - fi-cfl-8700k: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-cfl-8700k/igt@gem_huc_copy@huc-copy.html - fi-skl-6600u: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#2190]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-skl-6600u/igt@gem_huc_copy@huc-copy.html - fi-kbl-soraka: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#2190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-apl-guc: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#4613]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-apl-guc/igt@gem_lmem_swapping@basic.html - fi-kbl-soraka: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#4613]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html - fi-cfl-8700k: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#4613]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-cfl-8700k/igt@gem_lmem_swapping@basic.html - fi-kbl-guc: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#4613]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-kbl-guc/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@random-engines: - fi-skl-6600u: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#4613]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-skl-6600u/igt@gem_lmem_swapping@random-engines.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][12] ([i915#1886] / [i915#7913]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@mman: - bat-rpls-1: [PASS][13] -> [TIMEOUT][14] ([i915#6794] / [i915#7392]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/bat-rpls-1/igt@i915_selftest@live@mman.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/bat-rpls-1/igt@i915_selftest@live@mman.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-rpls-1: [PASS][15] -> [WARN][16] ([i915#8747]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][17] ([fdo#109271]) +9 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - fi-kbl-guc: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#1845]) +8 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-kbl-guc/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - fi-skl-6600u: NOTRUN -> [SKIP][19] ([fdo#109271]) +8 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-skl-6600u/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - fi-cfl-8700k: NOTRUN -> [SKIP][20] ([fdo#109271]) +10 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-cfl-8700k/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_hdmi_inject@inject-audio: - fi-apl-guc: NOTRUN -> [SKIP][21] ([fdo#109271]) +16 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-apl-guc/igt@kms_hdmi_inject@inject-audio.html - fi-kbl-guc: NOTRUN -> [FAIL][22] ([IGT#3]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [PASS][23] -> [ABORT][24] ([i915#8668]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1: - fi-ivb-3770: NOTRUN -> [DMESG-WARN][25] ([i915#8841]) +6 other tests dmesg-warn [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-ivb-3770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html * igt@kms_psr@cursor_plane_move: - fi-ivb-3770: NOTRUN -> [SKIP][26] ([fdo#109271]) +21 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-ivb-3770/igt@kms_psr@cursor_plane_move.html - fi-kbl-guc: NOTRUN -> [SKIP][27] ([fdo#109271]) +25 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/fi-kbl-guc/igt@kms_psr@cursor_plane_move.html #### Possible fixes #### * igt@kms_chamelium_edid@hdmi-edid-read: - {bat-dg2-13}: [DMESG-WARN][28] ([i915#7952]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8747]: https://gitlab.freedesktop.org/drm/intel/issues/8747 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7506 -> IGTPW_9891 CI-20190529: 20190529 CI_DRM_13689: 5933eb0a0717a28e668d33e01a707311d31cebbb @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9891: 9891 IGT_7506: 4fdf544bd0a38c5a100ef43c30171827e1c8c442 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_universal_plane@cursor-fb-leak +igt@kms_universal_plane@disable-primary-vs-flip +igt@kms_universal_plane@universal-plane-functional +igt@kms_universal_plane@universal-plane-pageflip-windowed +igt@kms_universal_plane@universal-plane-sanity +igt@xe_exec_threads@threads-hang-shared-vm-rebind-err +igt@xe_exec_threads@threads-hang-shared-vm-userptr-rebind-err +igt@xe_exec_threads@threads-shared-vm-rebind-err +igt@xe_exec_threads@threads-shared-vm-userptr-rebind-err +igt@xe_mmio@mmio-invalid +igt@xe_mmio@mmio-timestamp +igt@xe_query@query-gts +igt@xe_vm@vm-async-ops-err +igt@xe_vm@vm-async-ops-err-destroy -igt@kms_universal_plane@cursor-fb-leak-pipe-a -igt@kms_universal_plane@cursor-fb-leak-pipe-b -igt@kms_universal_plane@cursor-fb-leak-pipe-c -igt@kms_universal_plane@cursor-fb-leak-pipe-d -igt@kms_universal_plane@cursor-fb-leak-pipe-e -igt@kms_universal_plane@cursor-fb-leak-pipe-f -igt@kms_universal_plane@cursor-fb-leak-pipe-g -igt@kms_universal_plane@cursor-fb-leak-pipe-h -igt@kms_universal_plane@disable-primary-vs-flip-pipe-a -igt@kms_universal_plane@disable-primary-vs-flip-pipe-b -igt@kms_universal_plane@disable-primary-vs-flip-pipe-c -igt@kms_universal_plane@disable-primary-vs-flip-pipe-d -igt@kms_universal_plane@disable-primary-vs-flip-pipe-e -igt@kms_universal_plane@disable-primary-vs-flip-pipe-f -igt@kms_universal_plane@disable-primary-vs-flip-pipe-g -igt@kms_universal_plane@disable-primary-vs-flip-pipe-h -igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-a -igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b -igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c -igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d -igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-e -igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-f -igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-g -igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-h -igt@kms_universal_plane@universal-plane-pipe-a-functional -igt@kms_universal_plane@universal-plane-pipe-a-sanity -igt@kms_universal_plane@universal-plane-pipe-b-functional -igt@kms_universal_plane@universal-plane-pipe-b-sanity -igt@kms_universal_plane@universal-plane-pipe-c-functional -igt@kms_universal_plane@universal-plane-pipe-c-sanity -igt@kms_universal_plane@universal-plane-pipe-d-functional -igt@kms_universal_plane@universal-plane-pipe-d-sanity -igt@kms_universal_plane@universal-plane-pipe-e-functional -igt@kms_universal_plane@universal-plane-pipe-e-sanity -igt@kms_universal_plane@universal-plane-pipe-f-functional -igt@kms_universal_plane@universal-plane-pipe-f-sanity -igt@kms_universal_plane@universal-plane-pipe-g-functional -igt@kms_universal_plane@universal-plane-pipe-g-sanity -igt@kms_universal_plane@universal-plane-pipe-h-functional -igt@kms_universal_plane@universal-plane-pipe-h-sanity -igt@xe_exec_balancer@many-cm-parallel-basic -igt@xe_exec_balancer@many-cm-parallel-rebind -igt@xe_exec_balancer@many-cm-parallel-userptr -igt@xe_exec_balancer@many-cm-parallel-userptr-invalidate -igt@xe_exec_balancer@many-cm-parallel-userptr-invalidate-race -igt@xe_exec_balancer@many-cm-parallel-userptr-rebind -igt@xe_exec_balancer@many-execqueues-cm-parallel-basic -igt@xe_exec_balancer@many-execqueues-cm-parallel-rebind -igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr -igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-invalidate -igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-invalidate-race -igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind -igt@xe_exec_balancer@no-exec-cm-parallel-basic -igt@xe_exec_balancer@no-exec-cm-parallel-rebind -igt@xe_exec_balancer@no-exec-cm-parallel-userptr -igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate -igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race -igt@xe_exec_balancer@no-exec-cm-parallel-userptr-rebind -igt@xe_exec_balancer@once-cm-parallel-basic -igt@xe_exec_balancer@once-cm-parallel-rebind -igt@xe_exec_balancer@once-cm-parallel-userptr -igt@xe_exec_balancer@once-cm-parallel-userptr-invalidate -igt@xe_exec_balancer@once-cm-parallel-userptr-invalidate-race -igt@xe_exec_balancer@once-cm-parallel-userptr-rebind -igt@xe_exec_balancer@twice-cm-parallel-basic -igt@xe_exec_balancer@twice-cm-parallel-rebind -igt@xe_exec_balancer@twice-cm-parallel-userptr -igt@xe_exec_balancer@twice-cm-parallel-userptr-invalidate -igt@xe_exec_balancer@twice-cm-parallel-userptr-invalidate-race -igt@xe_exec_balancer@twice-cm-parallel-userptr-rebind -igt@xe_exec_threads@threads-hang-rebind-err -igt@xe_exec_threads@threads-hang-userptr-rebind-err -igt@xe_exec_threads@threads-rebind-err -igt@xe_exec_threads@threads-userptr-rebind-err -igt@xe_query@query-cs-cycles -igt@xe_query@query-gt-list -igt@xe_query@query-invalid-cs-cycles == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/index.html [-- Attachment #2: Type: text/html, Size: 16295 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_universal_plane: Dynamic conversion (rev2) 2023-09-28 15:56 [igt-dev] [v2 0/2] tests/kms_universal_plane: Dynamic conversion Swati Sharma ` (3 preceding siblings ...) 2023-09-28 16:49 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-09-29 2:42 ` Patchwork 2023-10-05 12:11 ` [igt-dev] [v2 0/2] tests/kms_universal_plane: Dynamic conversion Modem, Bhanuprakash 2023-10-09 9:28 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_universal_plane: Dynamic conversion (rev2) Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-09-29 2:42 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100271 bytes --] == Series Details == Series: tests/kms_universal_plane: Dynamic conversion (rev2) URL : https://patchwork.freedesktop.org/series/123851/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13689_full -> IGTPW_9891_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9891_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9891_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9891/index.html Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9891_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rps@reset: - shard-dg1: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-15/igt@i915_pm_rps@reset.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@i915_pm_rps@reset.html * igt@kms_flip@flip-vs-suspend@c-hdmi-a2: - shard-glk: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-glk4/igt@kms_flip@flip-vs-suspend@c-hdmi-a2.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-glk4/igt@kms_flip@flip-vs-suspend@c-hdmi-a2.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1 (NEW): - shard-tglu: NOTRUN -> [FAIL][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * {igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-3} (NEW): - shard-dg2: NOTRUN -> [FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-3.html New tests --------- New tests have been introduced between CI_DRM_13689_full and IGTPW_9891_full: ### New IGT tests (141) ### * igt@kms_plane_alpha_blend@alpha-7efc@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-7efc@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-7efc@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-7efc@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-7efc@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-dp-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1: - Statuses : 1 fail(s) 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-basic@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-basic@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - Statuses : 1 fail(s) 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-dp-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-dp-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - Statuses : 1 fail(s) 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-hdmi-a-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-dp-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1: - Statuses : 1 fail(s) 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-dp-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-min@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-min@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-min@pipe-a-hdmi-a-1: - Statuses : 4 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-min@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-min@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-min@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@coverage-7efc@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@coverage-7efc@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@coverage-7efc@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@coverage-7efc@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@coverage-7efc@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak: - Statuses : - Exec time: [None] s * igt@kms_universal_plane@cursor-fb-leak@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - Statuses : 1 fail(s) 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-3: - Statuses : 1 fail(s) 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip: - Statuses : - Exec time: [None] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional: - Statuses : - Exec time: [None] s * igt@kms_universal_plane@universal-plane-functional@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity: - Statuses : - Exec time: [None] s * igt@kms_universal_plane@universal-plane-sanity@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-a-hdmi-a-1: - Statuses : 4 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-b-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-c-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9891_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8411]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][8] ([i915#6122]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@api_intel_bb@render-ccs.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +4 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-12/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +13 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@drm_fdinfo@isolation@rcs0: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +13 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@drm_fdinfo@isolation@rcs0.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#4873]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@gem_caching@writes.html * igt@gem_ccs@suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][14] ([i915#7297]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#9364]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][19] -> [FAIL][20] ([i915#6268]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-rkl-6/igt@gem_ctx_exec@basic-nohangcheck.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-mtlp: [PASS][21] -> [ABORT][22] ([i915#9262]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-mtlp-2/igt@gem_ctx_isolation@preservation-s3@rcs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-5/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8555]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-8/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-args: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-19/igt@gem_ctx_sseu@invalid-args.html - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@unwedge-stress: - shard-dg2: NOTRUN -> [FAIL][28] ([i915#5784]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@gem_eio@unwedge-stress.html - shard-dg1: [PASS][29] -> [FAIL][30] ([i915#5784]) +1 other test fail [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-19/igt@gem_eio@unwedge-stress.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-18/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4771]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_endless@dispatch@bcs0: - shard-dg1: [PASS][33] -> [TIMEOUT][34] ([i915#3778]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-15/igt@gem_exec_endless@dispatch@bcs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][35] -> [FAIL][36] ([i915#2846]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4473] / [i915#4771]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-8/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-tglu: NOTRUN -> [FAIL][38] ([i915#2842]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-8/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][39] -> [FAIL][40] ([i915#2842]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-glk6/igt@gem_exec_fair@basic-pace@rcs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-glk3/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4812]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-5/igt@gem_exec_fence@submit3.html - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4812]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +5 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][45] ([fdo#112283]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) +11 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +7 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_reloc@basic-write-wc-active: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-18/igt@gem_exec_reloc@basic-write-wc-active.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4537]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-2/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4860]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#2190]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-apl: NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#4613]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-apl4/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4083]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@basic-write-read: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4077]) +15 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@gem_mmap_gtt@basic-write-read.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4077]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-16/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4077]) +16 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +7 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_pxp@create-regular-context-2: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4270]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4270]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3282]) +11 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#8428]) +6 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4079]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4885]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4885]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-5/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4079]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4879]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@mmap-offset-banned@gtt: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3297]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@gem_userptr_blits@mmap-offset-banned@gtt.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3281]) +16 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@gem_userptr_blits@relocations.html * igt@gem_workarounds@suspend-resume-fd: - shard-snb: NOTRUN -> [DMESG-WARN][76] ([i915#8841]) +2 other tests dmesg-warn [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-snb5/igt@gem_workarounds@suspend-resume-fd.html * igt@gen3_render_tiledy_blits: - shard-rkl: NOTRUN -> [SKIP][77] ([fdo#109289]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@gen3_render_tiledy_blits.html - shard-dg1: NOTRUN -> [SKIP][78] ([fdo#109289]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-12/igt@gen3_render_tiledy_blits.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][79] ([fdo#109289]) +6 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@gen7_exec_parse@basic-rejected.html * igt@gen7_exec_parse@oacontrol-tracking: - shard-mtlp: NOTRUN -> [SKIP][80] ([fdo#109289]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@gen7_exec_parse@oacontrol-tracking.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][81] -> [INCOMPLETE][82] ([i915#5566]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-glk2/igt@gen9_exec_parse@allowed-single.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-glk6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#2856]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#2527]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#2527]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#2856]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@gen9_exec_parse@valid-registers.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4881]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@i915_fb_tiling.html * igt@i915_hwmon@hwmon-write: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#7707]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@i915_hwmon@hwmon-write.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#6227]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@i915_module_load@load.html - shard-apl: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#6227]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-apl2/igt@i915_module_load@load.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#6590]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-3/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-dg1: [PASS][92] -> [FAIL][93] ([i915#3591]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#1397]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html - shard-rkl: NOTRUN -> [SKIP][95] ([i915#1397]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#1397]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][97] -> [SKIP][98] ([i915#1397]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-dg1: [PASS][99] -> [SKIP][100] ([i915#1397]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-17/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#8925]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_rps@thresholds-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#8925]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-8/igt@i915_pm_rps@thresholds-park@gt1.html * igt@i915_pm_sseu@full-enable: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#8437]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#6188]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#5723]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html - shard-dg1: NOTRUN -> [SKIP][106] ([i915#5723]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-19/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock@memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][107] ([i915#9311]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-2/igt@i915_selftest@mock@memory_region.html - shard-snb: NOTRUN -> [DMESG-WARN][108] ([i915#9311]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-snb6/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#4212]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4212]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-19/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#4212]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#3826]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#8502]) +11 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#8502] / [i915#8709]) +11 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][115] ([i915#8247]) +3 other tests fail [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][116] ([i915#8247]) +3 other tests fail [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#404]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#1769] / [i915#3555]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5286]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: NOTRUN -> [FAIL][122] ([i915#5138]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][123] ([fdo#111614]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-8/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][124] ([fdo#111614] / [i915#3638]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][125] ([fdo#111614]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-7/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][126] ([fdo#111614]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6187]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][128] ([fdo#111615]) +12 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [PASS][129] -> [FAIL][130] ([i915#3743]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#5190]) +19 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-19/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#4538] / [i915#5190]) +8 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-rkl: NOTRUN -> [SKIP][134] ([fdo#111615]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][135] ([fdo#110723]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#2705]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-6/igt@kms_big_joiner@invalid-modeset.html - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#2705]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#3689] / [i915#5354]) +24 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-6/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html - shard-tglu: NOTRUN -> [SKIP][139] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-4/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#5354] / [i915#6095]) +39 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#3734] / [i915#5354] / [i915#6095]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3886] / [i915#5354] / [i915#6095]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#3689] / [i915#3886] / [i915#5354]) +19 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#5354] / [i915#6095]) +6 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][145] ([fdo#109271] / [i915#3886]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-apl3/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#3886] / [i915#5354] / [i915#6095]) +10 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-3/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#3689] / [i915#5354] / [i915#6095]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-15/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#5354]) +17 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-2/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs.html - shard-dg1: NOTRUN -> [SKIP][149] ([i915#5354] / [i915#6095]) +4 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-15/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#4087] / [i915#7213]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3742]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#4087]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2: NOTRUN -> [SKIP][153] ([fdo#111827]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color@degamma: - shard-mtlp: NOTRUN -> [SKIP][154] ([fdo#111827]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-3/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#7828]) +4 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#7828]) +10 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#7828]) +7 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_color@deep-color@pipe-b-edp-1-degamma: - shard-mtlp: NOTRUN -> [FAIL][158] ([i915#6892]) +3 other tests fail [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_color@deep-color@pipe-b-edp-1-degamma.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#7118]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#3299]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3299]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#7118]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#6944]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#3359]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#3555]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8814]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#3359]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#3555]) +7 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-tglu: NOTRUN -> [SKIP][169] ([i915#3555]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3359]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-rkl: NOTRUN -> [SKIP][171] ([fdo#111825]) +4 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#4103] / [i915#4213] / [i915#5608]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#4213]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][174] ([fdo#111767] / [i915#3546]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][175] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][176] ([fdo#109274] / [i915#5354]) +5 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#4103] / [i915#4213]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#9227]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#9226] / [i915#9261]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#8827]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#8588]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#3840]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#3840]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_dsc@dsc-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-12/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-2/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3637]) +6 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-apl: NOTRUN -> [SKIP][187] ([fdo#109271] / [fdo#111767]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-apl2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-dg2: NOTRUN -> [SKIP][188] ([fdo#109274] / [fdo#111767]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-snb: NOTRUN -> [SKIP][189] ([fdo#109271] / [fdo#111767]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-snb2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-mtlp: NOTRUN -> [SKIP][190] ([fdo#111767] / [i915#3637]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-rkl: NOTRUN -> [SKIP][191] ([fdo#111767] / [fdo#111825]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][192] ([fdo#109274]) +12 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#3555]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2672]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#2672]) +4 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#8810]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#2672]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8810]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#2672] / [i915#3555]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][200] ([fdo#109285]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_force_connector_basic@force-load-detect.html - shard-mtlp: NOTRUN -> [SKIP][201] ([fdo#109285]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#5274]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-5/igt@kms_force_connector_basic@prune-stale-modes.html - shard-dg2: NOTRUN -> [SKIP][203] ([i915#5274]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8708]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#5354]) +81 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][206] ([fdo#109280]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#8708]) +21 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][208] ([fdo#111825] / [i915#1825]) +15 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: - shard-dg2: [PASS][209] -> [FAIL][210] ([i915#6880]) +1 other test fail [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-apl: NOTRUN -> [SKIP][211] ([fdo#109271]) +41 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-apl4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#1825]) +38 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][213] ([fdo#111825]) +4 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#5460]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#3458]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#3023]) +13 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-snb: NOTRUN -> [SKIP][217] ([fdo#109271]) +169 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#3458]) +28 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#8708]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#6118]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-6/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdmi_inject@inject-audio: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#433]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-18/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) +2 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#4816]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#6301]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3582]) +7 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#8806]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3546]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][229] ([i915#8292]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#5235]) +7 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#5235]) +15 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#5235]) +19 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#5235]) +19 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-rkl: NOTRUN -> [SKIP][234] ([fdo#111068] / [i915#658]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-apl: NOTRUN -> [SKIP][235] ([fdo#109271] / [i915#658]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-apl2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#658]) +4 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@primary_mmap_cpu: - shard-glk: NOTRUN -> [SKIP][237] ([fdo#109271]) +14 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-glk9/igt@kms_psr@primary_mmap_cpu.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#1072]) +5 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@kms_psr@psr2_cursor_plane_onoff.html - shard-dg1: NOTRUN -> [SKIP][239] ([i915#1072]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-19/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_psr@psr2_dpms: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#1072]) +10 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@kms_psr@psr2_dpms.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#5461] / [i915#658]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#5461] / [i915#658]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#4235]) +5 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#5289]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#4235] / [i915#5190]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][246] ([fdo#111615] / [i915#5289]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg1: NOTRUN -> [SKIP][247] ([fdo#111615] / [i915#5289]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#4235]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8809]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][250] ([i915#5465]) +1 other test fail [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#8623]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-14/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][252] ([i915#8623]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][253] ([i915#8623]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@pipe-c-query-forked-busy-hang: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#4070] / [i915#6768]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@kms_vblank@pipe-c-query-forked-busy-hang.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-mtlp: NOTRUN -> [ABORT][255] ([i915#9262]) +10 other tests abort [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@kms_vblank@pipe-c-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-wait-busy-hang: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#4070] / [i915#533] / [i915#6768]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-6/igt@kms_vblank@pipe-d-wait-busy-hang.html * igt@perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#7387]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@perf@global-sseu-config.html * igt@perf_pmu@busy-double-start@ccs3: - shard-dg2: [PASS][258] -> [FAIL][259] ([i915#4349]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg2-5/igt@perf_pmu@busy-double-start@ccs3.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@perf_pmu@busy-double-start@ccs3.html * igt@perf_pmu@busy-double-start@vecs0: - shard-dg1: [PASS][260] -> [FAIL][261] ([i915#4349]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-17/igt@perf_pmu@busy-double-start@vecs0.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-15/igt@perf_pmu@busy-double-start@vecs0.html * igt@perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#8850]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][263] ([i915#6806]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-6/igt@perf_pmu@frequency@gt0.html * igt@prime_vgem@basic-write: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#3708]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][265] ([fdo#109295] / [i915#3708]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][266] ([fdo#109295]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-2/igt@prime_vgem@fence-write-hang.html - shard-dg2: NOTRUN -> [SKIP][267] ([i915#3708]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@prime_vgem@fence-write-hang.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#4818]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@tools_test@sysfs_l3_parity.html - shard-rkl: NOTRUN -> [SKIP][269] ([fdo#109307]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#4818]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-2/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@create-perfmon-0: - shard-tglu: NOTRUN -> [SKIP][271] ([fdo#109315] / [i915#2575]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-7/igt@v3d/v3d_perfmon@create-perfmon-0.html * igt@v3d/v3d_submit_cl@bad-multisync-pad: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#2575]) +12 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@v3d/v3d_submit_cl@bad-multisync-pad.html * igt@v3d/v3d_submit_cl@multisync-out-syncs: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#2575]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-14/igt@v3d/v3d_submit_cl@multisync-out-syncs.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#2575]) +18 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-6/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@v3d/v3d_submit_csd@valid-multisync-submission: - shard-rkl: NOTRUN -> [SKIP][275] ([fdo#109315]) +4 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@v3d/v3d_submit_csd@valid-multisync-submission.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#7711]) +6 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-3/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#2575]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-6/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#7711]) +13 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@vc4/vc4_tiling@get-bad-handle.html * igt@vc4/vc4_wait_bo@used-bo-0ns: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#7711]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-16/igt@vc4/vc4_wait_bo@used-bo-0ns.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#7711]) +5 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html #### Possible fixes #### * igt@debugfs_test@read_all_entries: - shard-dg1: [DMESG-WARN][281] ([i915#4423]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-18/igt@debugfs_test@read_all_entries.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-18/igt@debugfs_test@read_all_entries.html * igt@device_reset@unbind-reset-rebind: - shard-dg2: [INCOMPLETE][283] ([i915#5507]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg2-11/igt@device_reset@unbind-reset-rebind.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][285] ([i915#7742]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_barrier_race@remote-request@rcs0: - shard-glk: [ABORT][287] ([i915#8190]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-glk5/igt@gem_barrier_race@remote-request@rcs0.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-glk2/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][289] ([i915#2842]) -> [PASS][290] +1 other test pass [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][291] ([i915#2842]) -> [PASS][292] +1 other test pass [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@i915_hangman@gt-error-state-capture@vecs0: - shard-mtlp: [ABORT][293] ([i915#9414]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-mtlp-5/igt@i915_hangman@gt-error-state-capture@vecs0.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-3/igt@i915_hangman@gt-error-state-capture@vecs0.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-dg1: [FAIL][295] ([i915#3591]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][297] ([i915#1397]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [SKIP][299] ([i915#1397]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-14/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rps@waitboost: - shard-dg2: [FAIL][301] ([i915#8229]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg2-10/igt@i915_pm_rps@waitboost.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@i915_pm_rps@waitboost.html - shard-dg1: [FAIL][303] ([i915#8229]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-15/igt@i915_pm_rps@waitboost.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-12/igt@i915_pm_rps@waitboost.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][305] ([i915#2346]) -> [PASS][306] +1 other test pass [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/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: [FAIL][307] ([i915#2346]) -> [PASS][308] +1 other test pass [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-tglu: [FAIL][309] ([i915#4767]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-tglu-10/igt@kms_fbcon_fbt@fbc-suspend.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: - shard-apl: [INCOMPLETE][311] ([i915#1982] / [i915#9392]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html * igt@perf_pmu@frequency@gt0: - shard-glk: [SKIP][313] ([fdo#109271]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-glk2/igt@perf_pmu@frequency@gt0.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-glk2/igt@perf_pmu@frequency@gt0.html #### Warnings #### * igt@gem_ctx_isolation@preservation-s3@vcs1: - shard-mtlp: [ABORT][315] ([i915#9262]) -> [DMESG-WARN][316] ([i915#9262]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-mtlp-2/igt@gem_ctx_isolation@preservation-s3@vcs1.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-5/igt@gem_ctx_isolation@preservation-s3@vcs1.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: [SKIP][317] ([i915#4423] / [i915#4565]) -> [SKIP][318] ([i915#4565]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][319] ([i915#5493]) -> [DMESG-WARN][320] ([i915#4936] / [i915#5493]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [FAIL][321] ([i915#2681] / [i915#3591]) -> [WARN][322] ([i915#2681]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg1: [SKIP][323] ([i915#4212]) -> [SKIP][324] ([i915#4212] / [i915#4423]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-12/igt@kms_addfb_basic@clobberred-modifier.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-15/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-dg1: [SKIP][325] ([i915#3689] / [i915#3886] / [i915#4423] / [i915#5354] / [i915#6095]) -> [SKIP][326] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-12/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-14/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt: - shard-dg1: [SKIP][327] ([fdo#111825]) -> [SKIP][328] ([fdo#111825] / [i915#4423]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][329] ([i915#9351]) -> [INCOMPLETE][330] ([i915#5493]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [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#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [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#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [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#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [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#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [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.freed == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/index.html [-- Attachment #2: Type: text/html, Size: 121894 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [v2 0/2] tests/kms_universal_plane: Dynamic conversion 2023-09-28 15:56 [igt-dev] [v2 0/2] tests/kms_universal_plane: Dynamic conversion Swati Sharma ` (4 preceding siblings ...) 2023-09-29 2:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-10-05 12:11 ` Modem, Bhanuprakash 2023-10-09 9:28 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_universal_plane: Dynamic conversion (rev2) Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Modem, Bhanuprakash @ 2023-10-05 12:11 UTC (permalink / raw) To: Swati Sharma, igt-dev Hi Swati, On Thu-28-09-2023 09:26 pm, Swati Sharma wrote: > Convert subtests to dynamic subtests and update documentation > accordingly. > > Swati Sharma (2): > tests/kms_universal_plane: convert subtests to dynamic subtests > tests/kms_universal_plane: update testplan doc You need to combine these two patches, otherwise it'll break the 'git bisect'. - Bhanu > > tests/kms_universal_plane.c | 150 ++++++++---------------------------- > 1 file changed, 34 insertions(+), 116 deletions(-) > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_universal_plane: Dynamic conversion (rev2) 2023-09-28 15:56 [igt-dev] [v2 0/2] tests/kms_universal_plane: Dynamic conversion Swati Sharma ` (5 preceding siblings ...) 2023-10-05 12:11 ` [igt-dev] [v2 0/2] tests/kms_universal_plane: Dynamic conversion Modem, Bhanuprakash @ 2023-10-09 9:28 ` Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-10-09 9:28 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100270 bytes --] == Series Details == Series: tests/kms_universal_plane: Dynamic conversion (rev2) URL : https://patchwork.freedesktop.org/series/123851/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13689_full -> IGTPW_9891_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9891_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9891_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9891/index.html Participating hosts (10 -> 11) ------------------------------ Additional (1): shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9891_full: ### IGT changes ### #### Possible regressions #### * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1 (NEW): - shard-tglu: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * {igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-3} (NEW): - shard-dg2: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-3.html New tests --------- New tests have been introduced between CI_DRM_13689_full and IGTPW_9891_full: ### New IGT tests (95) ### * igt@kms_universal_plane@cursor-fb-leak: - Statuses : - Exec time: [None] s * igt@kms_universal_plane@cursor-fb-leak@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - Statuses : 1 fail(s) 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-3: - Statuses : 1 fail(s) 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip: - Statuses : - Exec time: [None] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@disable-primary-vs-flip@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional: - Statuses : - Exec time: [None] s * igt@kms_universal_plane@universal-plane-functional@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity: - Statuses : - Exec time: [None] s * igt@kms_universal_plane@universal-plane-sanity@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-a-hdmi-a-1: - Statuses : 4 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-b-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-c-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_universal_plane@universal-plane-sanity@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9891_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][4] ([i915#6122]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@api_intel_bb@render-ccs.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#8414]) +4 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-12/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +13 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@drm_fdinfo@isolation@rcs0: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8414]) +13 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@drm_fdinfo@isolation@rcs0.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#4873]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@gem_caching@writes.html * igt@gem_ccs@suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][10] ([i915#7297]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [PASS][13] -> [INCOMPLETE][14] ([i915#9364]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][15] -> [FAIL][16] ([i915#6268]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-rkl-6/igt@gem_ctx_exec@basic-nohangcheck.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-mtlp: [PASS][17] -> [ABORT][18] ([i915#9262]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-mtlp-2/igt@gem_ctx_isolation@preservation-s3@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-5/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8555]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-8/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-args: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-19/igt@gem_ctx_sseu@invalid-args.html - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@unwedge-stress: - shard-dg2: NOTRUN -> [FAIL][24] ([i915#5784]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@gem_eio@unwedge-stress.html - shard-dg1: [PASS][25] -> [FAIL][26] ([i915#5784]) +1 other test fail [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-19/igt@gem_eio@unwedge-stress.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-18/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4771]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_endless@dispatch@bcs0: - shard-dg1: [PASS][29] -> [TIMEOUT][30] ([i915#3778]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-15/igt@gem_exec_endless@dispatch@bcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][31] -> [FAIL][32] ([i915#2846]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4473] / [i915#4771]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-8/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-tglu: NOTRUN -> [FAIL][34] ([i915#2842]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-8/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][35] -> [FAIL][36] ([i915#2842]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-glk6/igt@gem_exec_fair@basic-pace@rcs0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-glk3/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4812]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-5/igt@gem_exec_fence@submit3.html - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4812]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +5 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][41] ([fdo#112283]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +11 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#3281]) +7 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_reloc@basic-write-wc-active: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-18/igt@gem_exec_reloc@basic-write-wc-active.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4537]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-2/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4860]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#2190]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4613]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-apl: NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#4613]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-apl4/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4083]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@basic-write-read: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4077]) +15 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@gem_mmap_gtt@basic-write-read.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-16/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +16 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4083]) +7 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#3282]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3282]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_pxp@create-regular-context-2: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4270]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4270]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +11 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#8428]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4079]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4885]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4885]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-5/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4079]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4879]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@mmap-offset-banned@gtt: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#3297]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@gem_userptr_blits@mmap-offset-banned@gtt.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3281]) +16 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@gem_userptr_blits@relocations.html * igt@gem_workarounds@suspend-resume-fd: - shard-snb: NOTRUN -> [DMESG-WARN][72] ([i915#8841]) +2 other tests dmesg-warn [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-snb5/igt@gem_workarounds@suspend-resume-fd.html * igt@gen3_render_tiledy_blits: - shard-rkl: NOTRUN -> [SKIP][73] ([fdo#109289]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@gen3_render_tiledy_blits.html - shard-dg1: NOTRUN -> [SKIP][74] ([fdo#109289]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-12/igt@gen3_render_tiledy_blits.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][75] ([fdo#109289]) +6 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@gen7_exec_parse@basic-rejected.html * igt@gen7_exec_parse@oacontrol-tracking: - shard-mtlp: NOTRUN -> [SKIP][76] ([fdo#109289]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@gen7_exec_parse@oacontrol-tracking.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][77] -> [INCOMPLETE][78] ([i915#5566]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-glk2/igt@gen9_exec_parse@allowed-single.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-glk6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#2856]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#2527]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#2527]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#2856]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@gen9_exec_parse@valid-registers.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4881]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@i915_fb_tiling.html * igt@i915_hwmon@hwmon-write: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#7707]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@i915_hwmon@hwmon-write.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#6227]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@i915_module_load@load.html - shard-apl: NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#6227]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-apl2/igt@i915_module_load@load.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#6590]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-3/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-dg1: [PASS][88] -> [FAIL][89] ([i915#3591]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#1397]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html - shard-rkl: NOTRUN -> [SKIP][91] ([i915#1397]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#1397]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][93] -> [SKIP][94] ([i915#1397]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-dg1: [PASS][95] -> [SKIP][96] ([i915#1397]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-17/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rps@reset: - shard-dg1: [PASS][97] -> [FAIL][98] ([i915#8346]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-15/igt@i915_pm_rps@reset.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#8925]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_rps@thresholds-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#8925]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-8/igt@i915_pm_rps@thresholds-park@gt1.html * igt@i915_pm_sseu@full-enable: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#8437]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#6188]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#5723]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html - shard-dg1: NOTRUN -> [SKIP][104] ([i915#5723]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-19/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock@memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][105] ([i915#9311]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-2/igt@i915_selftest@mock@memory_region.html - shard-snb: NOTRUN -> [DMESG-WARN][106] ([i915#9311]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-snb6/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#4212]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4212]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-19/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#4212]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#3826]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#8502]) +11 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#8502] / [i915#8709]) +11 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][113] ([i915#8247]) +3 other tests fail [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][114] ([i915#8247]) +3 other tests fail [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#404]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#1769] / [i915#3555]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#5286]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5286]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: NOTRUN -> [FAIL][120] ([i915#5138]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][121] ([fdo#111614]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-8/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][122] ([fdo#111614] / [i915#3638]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][123] ([fdo#111614]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-7/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][124] ([fdo#111614]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6187]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][126] ([fdo#111615]) +12 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [PASS][127] -> [FAIL][128] ([i915#3743]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#5190]) +19 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-19/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +8 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-rkl: NOTRUN -> [SKIP][132] ([fdo#111615]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][133] ([fdo#110723]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#2705]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-6/igt@kms_big_joiner@invalid-modeset.html - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#2705]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#3689] / [i915#5354]) +24 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-6/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html - shard-tglu: NOTRUN -> [SKIP][137] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-4/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#5354] / [i915#6095]) +39 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#3734] / [i915#5354] / [i915#6095]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#3886] / [i915#5354] / [i915#6095]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#3689] / [i915#3886] / [i915#5354]) +19 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#5354] / [i915#6095]) +6 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][143] ([fdo#109271] / [i915#3886]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-apl3/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3886] / [i915#5354] / [i915#6095]) +10 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-3/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#3689] / [i915#5354] / [i915#6095]) +4 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-15/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#5354]) +17 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-2/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs.html - shard-dg1: NOTRUN -> [SKIP][147] ([i915#5354] / [i915#6095]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-15/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#4087] / [i915#7213]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3742]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#4087]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2: NOTRUN -> [SKIP][151] ([fdo#111827]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color@degamma: - shard-mtlp: NOTRUN -> [SKIP][152] ([fdo#111827]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-3/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#7828]) +4 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#7828]) +10 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#7828]) +7 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_color@deep-color@pipe-b-edp-1-degamma: - shard-mtlp: NOTRUN -> [FAIL][156] ([i915#6892]) +3 other tests fail [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_color@deep-color@pipe-b-edp-1-degamma.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#7118]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3299]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3299]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#7118]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#6944]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#3359]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#3555]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#8814]) +3 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#3359]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#3555]) +7 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-tglu: NOTRUN -> [SKIP][167] ([i915#3555]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3359]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-rkl: NOTRUN -> [SKIP][169] ([fdo#111825]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#4103] / [i915#4213] / [i915#5608]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#4213]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][172] ([fdo#111767] / [i915#3546]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][173] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][174] ([fdo#109274] / [i915#5354]) +5 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#4103] / [i915#4213]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#9227]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#9226] / [i915#9261]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8827]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#8588]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3840]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#3840]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_dsc@dsc-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#3840]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-12/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#3840]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-2/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3637]) +6 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-apl: NOTRUN -> [SKIP][185] ([fdo#109271] / [fdo#111767]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-apl2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-dg2: NOTRUN -> [SKIP][186] ([fdo#109274] / [fdo#111767]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-snb: NOTRUN -> [SKIP][187] ([fdo#109271] / [fdo#111767]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-snb2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-mtlp: NOTRUN -> [SKIP][188] ([fdo#111767] / [i915#3637]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-rkl: NOTRUN -> [SKIP][189] ([fdo#111767] / [fdo#111825]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][190] ([fdo#109274]) +12 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-suspend@c-hdmi-a2: - shard-glk: [PASS][191] -> [INCOMPLETE][192] ([i915#4839]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-glk4/igt@kms_flip@flip-vs-suspend@c-hdmi-a2.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-glk4/igt@kms_flip@flip-vs-suspend@c-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#3555]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2672]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#2672]) +4 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#8810]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#2672]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8810]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#2672] / [i915#3555]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][200] ([fdo#109285]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_force_connector_basic@force-load-detect.html - shard-mtlp: NOTRUN -> [SKIP][201] ([fdo#109285]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#5274]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-5/igt@kms_force_connector_basic@prune-stale-modes.html - shard-dg2: NOTRUN -> [SKIP][203] ([i915#5274]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8708]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#5354]) +81 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][206] ([fdo#109280]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#8708]) +21 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][208] ([fdo#111825] / [i915#1825]) +15 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: - shard-dg2: [PASS][209] -> [FAIL][210] ([i915#6880]) +1 other test fail [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-apl: NOTRUN -> [SKIP][211] ([fdo#109271]) +41 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-apl4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#1825]) +38 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][213] ([fdo#111825]) +4 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#5460]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#3458]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#3023]) +13 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-snb: NOTRUN -> [SKIP][217] ([fdo#109271]) +169 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#3458]) +28 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#8708]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#6118]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-6/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdmi_inject@inject-audio: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#433]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-18/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) +2 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#4816]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#6301]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3582]) +7 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#8806]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3546]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][229] ([i915#8292]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#5235]) +7 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#5235]) +15 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#5235]) +19 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#5235]) +19 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-rkl: NOTRUN -> [SKIP][234] ([fdo#111068] / [i915#658]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-apl: NOTRUN -> [SKIP][235] ([fdo#109271] / [i915#658]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-apl2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#658]) +4 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@primary_mmap_cpu: - shard-glk: NOTRUN -> [SKIP][237] ([fdo#109271]) +14 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-glk9/igt@kms_psr@primary_mmap_cpu.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#1072]) +5 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@kms_psr@psr2_cursor_plane_onoff.html - shard-dg1: NOTRUN -> [SKIP][239] ([i915#1072]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-19/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_psr@psr2_dpms: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#1072]) +10 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@kms_psr@psr2_dpms.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#5461] / [i915#658]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#5461] / [i915#658]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#4235]) +5 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#5289]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#4235] / [i915#5190]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][246] ([fdo#111615] / [i915#5289]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg1: NOTRUN -> [SKIP][247] ([fdo#111615] / [i915#5289]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#4235]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8809]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][250] ([i915#5465]) +1 other test fail [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#8623]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-14/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][252] ([i915#8623]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][253] ([i915#8623]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@pipe-c-query-forked-busy-hang: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#4070] / [i915#6768]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@kms_vblank@pipe-c-query-forked-busy-hang.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-mtlp: NOTRUN -> [ABORT][255] ([i915#9262]) +10 other tests abort [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@kms_vblank@pipe-c-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-wait-busy-hang: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#4070] / [i915#533] / [i915#6768]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-6/igt@kms_vblank@pipe-d-wait-busy-hang.html * igt@perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#7387]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-1/igt@perf@global-sseu-config.html * igt@perf_pmu@busy-double-start@ccs3: - shard-dg2: [PASS][258] -> [FAIL][259] ([i915#4349]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg2-5/igt@perf_pmu@busy-double-start@ccs3.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-3/igt@perf_pmu@busy-double-start@ccs3.html * igt@perf_pmu@busy-double-start@vecs0: - shard-dg1: [PASS][260] -> [FAIL][261] ([i915#4349]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-17/igt@perf_pmu@busy-double-start@vecs0.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-15/igt@perf_pmu@busy-double-start@vecs0.html * igt@perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#8850]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-1/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][263] ([i915#6806]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-6/igt@perf_pmu@frequency@gt0.html * igt@prime_vgem@basic-write: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#3708]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-7/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][265] ([fdo#109295] / [i915#3708]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][266] ([fdo#109295]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-2/igt@prime_vgem@fence-write-hang.html - shard-dg2: NOTRUN -> [SKIP][267] ([i915#3708]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@prime_vgem@fence-write-hang.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#4818]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-1/igt@tools_test@sysfs_l3_parity.html - shard-rkl: NOTRUN -> [SKIP][269] ([fdo#109307]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#4818]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-2/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@create-perfmon-0: - shard-tglu: NOTRUN -> [SKIP][271] ([fdo#109315] / [i915#2575]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-7/igt@v3d/v3d_perfmon@create-perfmon-0.html * igt@v3d/v3d_submit_cl@bad-multisync-pad: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#2575]) +12 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-6/igt@v3d/v3d_submit_cl@bad-multisync-pad.html * igt@v3d/v3d_submit_cl@multisync-out-syncs: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#2575]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-14/igt@v3d/v3d_submit_cl@multisync-out-syncs.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#2575]) +18 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-6/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@v3d/v3d_submit_csd@valid-multisync-submission: - shard-rkl: NOTRUN -> [SKIP][275] ([fdo#109315]) +4 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@v3d/v3d_submit_csd@valid-multisync-submission.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#7711]) +6 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-3/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#2575]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-6/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#7711]) +13 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-7/igt@vc4/vc4_tiling@get-bad-handle.html * igt@vc4/vc4_wait_bo@used-bo-0ns: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#7711]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-16/igt@vc4/vc4_wait_bo@used-bo-0ns.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#7711]) +5 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-7/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html #### Possible fixes #### * igt@debugfs_test@read_all_entries: - shard-dg1: [DMESG-WARN][281] ([i915#4423]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-18/igt@debugfs_test@read_all_entries.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-18/igt@debugfs_test@read_all_entries.html * igt@device_reset@unbind-reset-rebind: - shard-dg2: [INCOMPLETE][283] ([i915#5507]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg2-11/igt@device_reset@unbind-reset-rebind.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][285] ([i915#7742]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_barrier_race@remote-request@rcs0: - shard-glk: [ABORT][287] ([i915#8190]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-glk5/igt@gem_barrier_race@remote-request@rcs0.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-glk2/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][289] ([i915#2842]) -> [PASS][290] +1 other test pass [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][291] ([i915#2842]) -> [PASS][292] +1 other test pass [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@i915_hangman@gt-error-state-capture@vecs0: - shard-mtlp: [ABORT][293] ([i915#9414]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-mtlp-5/igt@i915_hangman@gt-error-state-capture@vecs0.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-3/igt@i915_hangman@gt-error-state-capture@vecs0.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-dg1: [FAIL][295] ([i915#3591]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][297] ([i915#1397]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [SKIP][299] ([i915#1397]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-14/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rps@waitboost: - shard-dg2: [FAIL][301] ([i915#8229]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg2-10/igt@i915_pm_rps@waitboost.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-2/igt@i915_pm_rps@waitboost.html - shard-dg1: [FAIL][303] ([i915#8229]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-15/igt@i915_pm_rps@waitboost.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-12/igt@i915_pm_rps@waitboost.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][305] ([i915#2346]) -> [PASS][306] +1 other test pass [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/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: [FAIL][307] ([i915#2346]) -> [PASS][308] +1 other test pass [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-tglu: [FAIL][309] ([i915#4767]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-tglu-10/igt@kms_fbcon_fbt@fbc-suspend.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: - shard-apl: [INCOMPLETE][311] ([i915#1982] / [i915#9392]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html * igt@perf_pmu@frequency@gt0: - shard-glk: [SKIP][313] ([fdo#109271]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-glk2/igt@perf_pmu@frequency@gt0.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-glk2/igt@perf_pmu@frequency@gt0.html #### Warnings #### * igt@gem_ctx_isolation@preservation-s3@vcs1: - shard-mtlp: [ABORT][315] ([i915#9262]) -> [DMESG-WARN][316] ([i915#9262]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-mtlp-2/igt@gem_ctx_isolation@preservation-s3@vcs1.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-mtlp-5/igt@gem_ctx_isolation@preservation-s3@vcs1.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: [SKIP][317] ([i915#4423] / [i915#4565]) -> [SKIP][318] ([i915#4565]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][319] ([i915#5493]) -> [DMESG-WARN][320] ([i915#4936] / [i915#5493]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [FAIL][321] ([i915#2681] / [i915#3591]) -> [WARN][322] ([i915#2681]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg1: [SKIP][323] ([i915#4212]) -> [SKIP][324] ([i915#4212] / [i915#4423]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-12/igt@kms_addfb_basic@clobberred-modifier.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-15/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-dg1: [SKIP][325] ([i915#3689] / [i915#3886] / [i915#4423] / [i915#5354] / [i915#6095]) -> [SKIP][326] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-12/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-14/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt: - shard-dg1: [SKIP][327] ([fdo#111825]) -> [SKIP][328] ([fdo#111825] / [i915#4423]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][329] ([i915#9351]) -> [INCOMPLETE][330] ([i915#5493]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13689/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [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#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [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#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [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#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [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#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [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#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [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#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6892]: https://gitlab.freedesktop.org/drm/intel/issues/6892 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8190]: https://gitlab.freedesktop.org/drm/intel/issues/8190 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8229]: https://gitlab.freedesktop.org/drm/intel/issues/8229 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 [i915#9310]: https://gitlab.freedesktop.org/drm/intel/issues/9310 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392 [i915#9412]: == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9891/index.html [-- Attachment #2: Type: text/html, Size: 126544 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-10-09 9:28 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-28 15:56 [igt-dev] [v2 0/2] tests/kms_universal_plane: Dynamic conversion Swati Sharma 2023-09-28 15:56 ` [igt-dev] [v2 1/2] tests/kms_universal_plane: convert subtests to dynamic subtests Swati Sharma 2023-10-05 12:10 ` Modem, Bhanuprakash 2023-09-28 15:56 ` [igt-dev] [v2 2/2] tests/kms_universal_plane: update testplan doc Swati Sharma 2023-09-28 16:44 ` [igt-dev] ✓ CI.xeBAT: success for tests/kms_universal_plane: Dynamic conversion (rev2) Patchwork 2023-09-28 16:49 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-29 2:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-10-05 12:11 ` [igt-dev] [v2 0/2] tests/kms_universal_plane: Dynamic conversion Modem, Bhanuprakash 2023-10-09 9:28 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_universal_plane: Dynamic conversion (rev2) Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox