* [igt-dev] [PATCH i-g-t] tests/kms_frontbuffer_tracking: Remove badstride subtests
@ 2023-10-02 7:11 Ville Syrjala
2023-10-02 8:41 ` Hogander, Jouni
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Ville Syrjala @ 2023-10-02 7:11 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
The FBC hardware doesn't have any weird stride limitations
since gen4. We had some leftover code in the kernel that thought
otherwise. That code is now gone so any stride the plane
accepts FBC will also now accept. Remove the badstride subtests
as they can no longer do anything sensible.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
tests/intel/kms_frontbuffer_tracking.c | 127 -------------------------
1 file changed, 127 deletions(-)
diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c
index 215ecdeef58d..6526e1c3cffa 100644
--- a/tests/intel/kms_frontbuffer_tracking.c
+++ b/tests/intel/kms_frontbuffer_tracking.c
@@ -4410,127 +4410,6 @@ static void farfromfence_subtest(const struct test_mode *t)
igt_remove_fb(drm.fd, &tall_fb);
}
-static void try_invalid_strides(void)
-{
- uint32_t gem_handle;
- int rc;
-
- /* Sizes that the Kernel shouldn't even allow for tiled */
- gem_handle = gem_create(drm.fd, 2048);
-
- /* Smaller than 512, yet still 64-byte aligned. */
- rc = __gem_set_tiling(drm.fd, gem_handle, I915_TILING_X, 448);
- igt_assert_eq(rc, -EINVAL);
-
- /* Bigger than 512, but not 64-byte aligned. */
- rc = __gem_set_tiling(drm.fd, gem_handle, I915_TILING_X, 1022);
- igt_assert_eq(rc, -EINVAL);
-
- /* Just make sure something actually works. */
- rc = __gem_set_tiling(drm.fd, gem_handle, I915_TILING_X, 1024);
- igt_assert_eq(rc, 0);
-
- gem_close(drm.fd, gem_handle);
-}
-
-/**
- * SUBTEST: fbc-badstride
- * Description: Try to use buffers with strides that are not supported
- * Driver requirement: i915, xe
- * Functionality: fbc, fbt
- * Mega feature: General Display Features
- * Test category: functionality test
- *
- * SUBTEST: fbcdrrs-badstride
- * Description: Try to use buffers with strides that are not supported
- * Driver requirement: i915, xe
- * Functionality: drrs, fbc, fbt
- * Mega feature: General Display Features
- * Test category: functionality test
- *
- * SUBTEST: fbcpsr-badstride
- * Description: Try to use buffers with strides that are not supported
- * Driver requirement: i915, xe
- * Functionality: fbc, fbt, psr
- * Mega feature: General Display Features
- * Test category: functionality test
- *
- * SUBTEST: fbcpsrdrrs-badstride
- * Description: Try to use buffers with strides that are not supported
- * Driver requirement: i915, xe
- * Functionality: drrs, fbc, fbt, psr
- * Mega feature: General Display Features
- * Test category: functionality test
- */
-
-/**
- * badstride - try to use buffers with strides that are not supported
- *
- * METHOD
- * First we try to create buffers with strides that are not allowed for tiled
- * surfaces and assert the Kernel rejects them. Then we create buffers with
- * strides that are allowed by the Kernel, but that are incompatible with FBC
- * and we assert that FBC stays disabled after we set a mode on those buffers.
- *
- * EXPECTED RESULTS
- * The invalid strides are rejected, and the valid strides that are
- * incompatible with FBC result in FBC disabled.
- *
- * FAILURES
- * There are two possible places where the Kernel can be broken: either the
- * code that checks valid strides for tiled buffers or the code that checks
- * the valid strides for FBC.
- */
-static void badstride_subtest(const struct test_mode *t)
-{
- struct igt_fb wide_fb, *old_fb;
- struct modeset_params *params = pick_params(t);
- int rc;
-
- if (gem_available_fences(drm.fd))
- try_invalid_strides();
-
- prepare_subtest(t, NULL);
-
- old_fb = params->primary.fb;
-
- create_fb(t->format, params->primary.fb->width + 4096, params->primary.fb->height,
- t->tiling, t->plane, &wide_fb);
- igt_assert(wide_fb.strides[0] > 16384);
-
- fill_fb(&wide_fb, COLOR_PRIM_BG);
-
- /* Try a simple modeset with the new fb. */
- params->primary.fb = &wide_fb;
- set_mode_for_params(params);
- do_assertions(ASSERT_FBC_DISABLED);
-
- /* Go back to the old fb so FBC works again. */
- params->primary.fb = old_fb;
- set_mode_for_params(params);
- do_assertions(0);
-
- /* We're doing the equivalent of a modeset, but with the planes API. */
- params->primary.fb = &wide_fb;
- set_prim_plane_for_params(params);
- do_assertions(ASSERT_FBC_DISABLED);
-
- params->primary.fb = old_fb;
- set_mode_for_params(params);
- do_assertions(0);
-
- /*
- * We previously couldn't use the page flip IOCTL to flip to a buffer
- * with a different stride. With the atomic page flip helper we can,
- * so allow page flip to fail and succeed.
- */
- rc = drmModePageFlip(drm.fd, drm.display.pipes[params->pipe].crtc_id, wide_fb.fb_id, 0, NULL);
- igt_assert(rc == -EINVAL || rc == 0);
- do_assertions(rc == 0 ? ASSERT_FBC_DISABLED : 0);
-
- igt_remove_fb(drm.fd, &wide_fb);
-}
-
/**
* SUBTEST: fbc-stridechange
* Description: Change the frontbuffer stride by doing a modeset
@@ -5255,12 +5134,6 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
}
if (t.feature & FEATURE_FBC) {
- igt_subtest_f("%s-badstride", feature_str(t.feature))
- {
- igt_require(igt_draw_supports_method(drm.fd, t.method));
- badstride_subtest(&t);
- }
-
igt_subtest_f("%s-stridechange", feature_str(t.feature))
{
igt_require(igt_draw_supports_method(drm.fd, t.method));
--
2.41.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/kms_frontbuffer_tracking: Remove badstride subtests 2023-10-02 7:11 [igt-dev] [PATCH i-g-t] tests/kms_frontbuffer_tracking: Remove badstride subtests Ville Syrjala @ 2023-10-02 8:41 ` Hogander, Jouni 2023-10-02 12:00 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Hogander, Jouni @ 2023-10-02 8:41 UTC (permalink / raw) To: ville.syrjala@linux.intel.com, igt-dev@lists.freedesktop.org On Mon, 2023-10-02 at 10:11 +0300, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > The FBC hardware doesn't have any weird stride limitations > since gen4. We had some leftover code in the kernel that thought > otherwise. That code is now gone so any stride the plane > accepts FBC will also now accept. Remove the badstride subtests > as they can no longer do anything sensible. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Jouni Högander <jouni.hogander@intel.com> > --- > tests/intel/kms_frontbuffer_tracking.c | 127 ----------------------- > -- > 1 file changed, 127 deletions(-) > > diff --git a/tests/intel/kms_frontbuffer_tracking.c > b/tests/intel/kms_frontbuffer_tracking.c > index 215ecdeef58d..6526e1c3cffa 100644 > --- a/tests/intel/kms_frontbuffer_tracking.c > +++ b/tests/intel/kms_frontbuffer_tracking.c > @@ -4410,127 +4410,6 @@ static void farfromfence_subtest(const struct > test_mode *t) > igt_remove_fb(drm.fd, &tall_fb); > } > > -static void try_invalid_strides(void) > -{ > - uint32_t gem_handle; > - int rc; > - > - /* Sizes that the Kernel shouldn't even allow for tiled */ > - gem_handle = gem_create(drm.fd, 2048); > - > - /* Smaller than 512, yet still 64-byte aligned. */ > - rc = __gem_set_tiling(drm.fd, gem_handle, I915_TILING_X, > 448); > - igt_assert_eq(rc, -EINVAL); > - > - /* Bigger than 512, but not 64-byte aligned. */ > - rc = __gem_set_tiling(drm.fd, gem_handle, I915_TILING_X, > 1022); > - igt_assert_eq(rc, -EINVAL); > - > - /* Just make sure something actually works. */ > - rc = __gem_set_tiling(drm.fd, gem_handle, I915_TILING_X, > 1024); > - igt_assert_eq(rc, 0); > - > - gem_close(drm.fd, gem_handle); > -} > - > -/** > - * SUBTEST: fbc-badstride > - * Description: Try to use buffers with strides that are not > supported > - * Driver requirement: i915, xe > - * Functionality: fbc, fbt > - * Mega feature: General Display Features > - * Test category: functionality test > - * > - * SUBTEST: fbcdrrs-badstride > - * Description: Try to use buffers with strides that are not > supported > - * Driver requirement: i915, xe > - * Functionality: drrs, fbc, fbt > - * Mega feature: General Display Features > - * Test category: functionality test > - * > - * SUBTEST: fbcpsr-badstride > - * Description: Try to use buffers with strides that are not > supported > - * Driver requirement: i915, xe > - * Functionality: fbc, fbt, psr > - * Mega feature: General Display Features > - * Test category: functionality test > - * > - * SUBTEST: fbcpsrdrrs-badstride > - * Description: Try to use buffers with strides that are not > supported > - * Driver requirement: i915, xe > - * Functionality: drrs, fbc, fbt, psr > - * Mega feature: General Display Features > - * Test category: functionality test > - */ > - > -/** > - * badstride - try to use buffers with strides that are not > supported > - * > - * METHOD > - * First we try to create buffers with strides that are not > allowed for tiled > - * surfaces and assert the Kernel rejects them. Then we create > buffers with > - * strides that are allowed by the Kernel, but that are > incompatible with FBC > - * and we assert that FBC stays disabled after we set a mode on > those buffers. > - * > - * EXPECTED RESULTS > - * The invalid strides are rejected, and the valid strides that > are > - * incompatible with FBC result in FBC disabled. > - * > - * FAILURES > - * There are two possible places where the Kernel can be broken: > either the > - * code that checks valid strides for tiled buffers or the code > that checks > - * the valid strides for FBC. > - */ > -static void badstride_subtest(const struct test_mode *t) > -{ > - struct igt_fb wide_fb, *old_fb; > - struct modeset_params *params = pick_params(t); > - int rc; > - > - if (gem_available_fences(drm.fd)) > - try_invalid_strides(); > - > - prepare_subtest(t, NULL); > - > - old_fb = params->primary.fb; > - > - create_fb(t->format, params->primary.fb->width + 4096, > params->primary.fb->height, > - t->tiling, t->plane, &wide_fb); > - igt_assert(wide_fb.strides[0] > 16384); > - > - fill_fb(&wide_fb, COLOR_PRIM_BG); > - > - /* Try a simple modeset with the new fb. */ > - params->primary.fb = &wide_fb; > - set_mode_for_params(params); > - do_assertions(ASSERT_FBC_DISABLED); > - > - /* Go back to the old fb so FBC works again. */ > - params->primary.fb = old_fb; > - set_mode_for_params(params); > - do_assertions(0); > - > - /* We're doing the equivalent of a modeset, but with the > planes API. */ > - params->primary.fb = &wide_fb; > - set_prim_plane_for_params(params); > - do_assertions(ASSERT_FBC_DISABLED); > - > - params->primary.fb = old_fb; > - set_mode_for_params(params); > - do_assertions(0); > - > - /* > - * We previously couldn't use the page flip IOCTL to flip to > a buffer > - * with a different stride. With the atomic page flip helper > we can, > - * so allow page flip to fail and succeed. > - */ > - rc = drmModePageFlip(drm.fd, drm.display.pipes[params- > >pipe].crtc_id, wide_fb.fb_id, 0, NULL); > - igt_assert(rc == -EINVAL || rc == 0); > - do_assertions(rc == 0 ? ASSERT_FBC_DISABLED : 0); > - > - igt_remove_fb(drm.fd, &wide_fb); > -} > - > /** > * SUBTEST: fbc-stridechange > * Description: Change the frontbuffer stride by doing a modeset > @@ -5255,12 +5134,6 @@ igt_main_args("", long_options, help_str, > opt_handler, NULL) > } > > if (t.feature & FEATURE_FBC) { > - igt_subtest_f("%s-badstride", > feature_str(t.feature)) > - { > - > igt_require(igt_draw_supports_method(dr > m.fd, t.method)); > - badstride_subtest(&t); > - } > - > igt_subtest_f("%s-stridechange", > feature_str(t.feature)) > { > igt_require(igt_draw_supports_method( > drm.fd, t.method)); ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_frontbuffer_tracking: Remove badstride subtests 2023-10-02 7:11 [igt-dev] [PATCH i-g-t] tests/kms_frontbuffer_tracking: Remove badstride subtests Ville Syrjala 2023-10-02 8:41 ` Hogander, Jouni @ 2023-10-02 12:00 ` Patchwork 2023-10-02 13:14 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-10-02 13:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-10-02 12:00 UTC (permalink / raw) To: Ville Syrjala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3516 bytes --] == Series Details == Series: tests/kms_frontbuffer_tracking: Remove badstride subtests URL : https://patchwork.freedesktop.org/series/124503/ State : success == Summary == CI Bug Log - changes from CI_DRM_13698 -> IGTPW_9899 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/index.html Participating hosts (40 -> 38) ------------------------------ Additional (1): fi-pnv-d510 Missing (3): fi-kbl-soraka fi-snb-2520m fi-bsw-n3050 Known issues ------------ Here are the changes found in IGTPW_9899 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@smem: - bat-dg2-9: [PASS][1] -> [INCOMPLETE][2] ([i915#9275]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-hsw-4770: NOTRUN -> [SKIP][3] ([fdo#109271]) +12 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][4] ([i915#1845]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1: - fi-hsw-4770: NOTRUN -> [DMESG-WARN][5] ([i915#8841]) +6 other tests dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/fi-hsw-4770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][6] ([fdo#109271]) +31 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/fi-pnv-d510/igt@kms_psr@primary_page_flip.html * igt@kms_psr@sprite_plane_onoff: - fi-hsw-4770: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1072]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7508 -> IGTPW_9899 CI-20190529: 20190529 CI_DRM_13698: 3d2a99736b6bdeebd24117c9de0a8d369f10da62 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9899: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/index.html IGT_7508: f366406b05ca6b3d16eaa734a91e0833bd159f54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- -igt@kms_frontbuffer_tracking@fbcdrrs-badstride -igt@kms_frontbuffer_tracking@fbcpsrdrrs-badstride -igt@kms_frontbuffer_tracking@fbcpsr-badstride -igt@kms_frontbuffer_tracking@fbc-badstride == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/index.html [-- Attachment #2: Type: text/html, Size: 4411 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/kms_frontbuffer_tracking: Remove badstride subtests 2023-10-02 7:11 [igt-dev] [PATCH i-g-t] tests/kms_frontbuffer_tracking: Remove badstride subtests Ville Syrjala 2023-10-02 8:41 ` Hogander, Jouni 2023-10-02 12:00 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-10-02 13:14 ` Patchwork 2023-10-02 13:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-10-02 13:14 UTC (permalink / raw) To: Ville Syrjala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1689 bytes --] == Series Details == Series: tests/kms_frontbuffer_tracking: Remove badstride subtests URL : https://patchwork.freedesktop.org/series/124503/ State : success == Summary == CI Bug Log - changes from XEIGT_7508_BAT -> XEIGTPW_9899_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 3) ------------------------------ Missing (1): bat-dg2-oem2 Known issues ------------ Here are the changes found in XEIGTPW_9899_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([i915#2346]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7508/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9899/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 Build changes ------------- * IGT: IGT_7508 -> IGTPW_9899 * Linux: xe-404-22fcf2404f56a8e7aea6734298e0b2b265136313 -> xe-405-13da205daec6272347232c2c523fe8cde8b67e35 IGTPW_9899: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/index.html IGT_7508: f366406b05ca6b3d16eaa734a91e0833bd159f54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-404-22fcf2404f56a8e7aea6734298e0b2b265136313: 22fcf2404f56a8e7aea6734298e0b2b265136313 xe-405-13da205daec6272347232c2c523fe8cde8b67e35: 13da205daec6272347232c2c523fe8cde8b67e35 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9899/index.html [-- Attachment #2: Type: text/html, Size: 2268 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_frontbuffer_tracking: Remove badstride subtests 2023-10-02 7:11 [igt-dev] [PATCH i-g-t] tests/kms_frontbuffer_tracking: Remove badstride subtests Ville Syrjala ` (2 preceding siblings ...) 2023-10-02 13:14 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-10-02 13:42 ` Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-10-02 13:42 UTC (permalink / raw) To: Ville Syrjala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 89076 bytes --] == Series Details == Series: tests/kms_frontbuffer_tracking: Remove badstride subtests URL : https://patchwork.freedesktop.org/series/124503/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13698_full -> IGTPW_9899_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9899_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9899_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_9899/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9899_full: ### IGT changes ### #### Possible regressions #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html * igt@gem_eio@in-flight-contexts-10ms: - shard-mtlp: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-7/igt@gem_eio@in-flight-contexts-10ms.html * igt@i915_module_load@reload-no-display: - shard-snb: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-snb7/igt@i915_module_load@reload-no-display.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-snb6/igt@i915_module_load@reload-no-display.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg2-11/igt@i915_pm_rc6_residency@rc6-accuracy.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@prime_vgem@sync@ccs0: - shard-mtlp: [PASS][8] -> [DMESG-WARN][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-2/igt@prime_vgem@sync@ccs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-6/igt@prime_vgem@sync@ccs0.html #### Warnings #### * igt@i915_suspend@basic-s3-without-i915: - shard-snb: [DMESG-WARN][10] ([i915#8841]) -> [INCOMPLETE][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-snb4/igt@i915_suspend@basic-s3-without-i915.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-snb2/igt@i915_suspend@basic-s3-without-i915.html New tests --------- New tests have been introduced between CI_DRM_13698_full and IGTPW_9899_full: ### New IGT tests (3) ### * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9899_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8411]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-6/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8411]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-12/igt@api_intel_bb@object-reloc-purge-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][14] ([i915#6122]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-6/igt@api_intel_bb@render-ccs.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#7701]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-9/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-hang@rcs0: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8414]) +11 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-1/igt@drm_fdinfo@busy-hang@rcs0.html * igt@drm_fdinfo@busy-idle-check-all@vcs0: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8414]) +21 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-1/igt@drm_fdinfo@busy-idle-check-all@vcs0.html * igt@drm_fdinfo@isolation@bcs0: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#8414]) +4 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-16/igt@drm_fdinfo@isolation@bcs0.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#3936]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-3/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#3936]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-3/igt@gem_busy@semaphore.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-16/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#6335]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][23] -> [FAIL][24] ([i915#6268]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-cleanup: - shard-snb: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#1099]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-snb7/igt@gem_ctx_persistence@engines-cleanup.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@legacy-engines-hostile@blt: - shard-mtlp: [PASS][27] -> [ABORT][28] ([i915#9414]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-2/igt@gem_ctx_persistence@legacy-engines-hostile@blt.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-5/igt@gem_ctx_persistence@legacy-engines-hostile@blt.html * igt@gem_ctx_sseu@engines: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-7/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#280]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-16/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][32] -> [FAIL][33] ([i915#5784]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg1-17/igt@gem_eio@unwedge-stress.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-16/igt@gem_eio@unwedge-stress.html - shard-mtlp: NOTRUN -> [FAIL][34] ([i915#9436]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-8/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4771]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-tglu: NOTRUN -> [SKIP][37] ([i915#6334]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-2/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture@vcs0-smem: - shard-mtlp: [PASS][38] -> [DMESG-WARN][39] ([i915#5591]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-5/igt@gem_exec_capture@capture@vcs0-smem.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-5/igt@gem_exec_capture@capture@vcs0-smem.html * igt@gem_exec_endless@dispatch@bcs0: - shard-dg2: [PASS][40] -> [TIMEOUT][41] ([i915#3778] / [i915#7016]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg2-7/igt@gem_exec_endless@dispatch@bcs0.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-tglu: NOTRUN -> [FAIL][42] ([i915#2842]) +4 other tests fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-8/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-7/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@submit3: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4812]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-7/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-mtlp: NOTRUN -> [DMESG-FAIL][45] ([i915#8962]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-17/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-15/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#7697]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-6/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][50] ([fdo#112283]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-7/igt@gem_exec_params@secure-non-master.html - shard-rkl: NOTRUN -> [SKIP][51] ([fdo#112283]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-2/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-gtt-active: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3281]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-active.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3281]) +11 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3281]) +7 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-18/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_schedule@noreorder-priority@ccs0: - shard-mtlp: [PASS][55] -> [DMESG-WARN][56] ([i915#8962]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-6/igt@gem_exec_schedule@noreorder-priority@ccs0.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@gem_exec_schedule@noreorder-priority@ccs0.html * igt@gem_exec_schedule@noreorder-priority@rcs0: - shard-mtlp: [PASS][57] -> [ABORT][58] ([i915#9262]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-6/igt@gem_exec_schedule@noreorder-priority@rcs0.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@gem_exec_schedule@noreorder-priority@rcs0.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s3@lmem0: - shard-dg2: [PASS][60] -> [FAIL][61] ([fdo#103375]) +1 other test fail [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg2-1/igt@gem_exec_suspend@basic-s3@lmem0.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-5/igt@gem_exec_suspend@basic-s3@lmem0.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][62] ([i915#7975] / [i915#8213]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_exec_whisper@basic-fds-priority-all: - shard-tglu: [PASS][63] -> [INCOMPLETE][64] ([i915#6755] / [i915#7392]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-tglu-9/igt@gem_exec_whisper@basic-fds-priority-all.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-6/igt@gem_exec_whisper@basic-fds-priority-all.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4860]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-6/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4860]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-3/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-glk: NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#4613]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-glk5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4565]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#4613]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][70] -> [TIMEOUT][71] ([i915#5493]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#4613]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-7/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#8289]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-7/igt@gem_media_fill@media-fill.html * igt@gem_mmap@big-bo: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4083]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-2/igt@gem_mmap@big-bo.html - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4083]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-19/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4077]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-18/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4077]) +11 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3282]) +7 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-2/igt@gem_pread@snoop.html - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3282]) +5 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-19/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#4270]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-1/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-16/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4270]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4270]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-5/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#4270]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-9/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4079]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4079]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-6/igt@gem_set_tiling_vs_gtt.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][87] ([fdo#110542]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-4/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-7/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4880]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@relocations: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3281]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@gem_userptr_blits@relocations.html * igt@gen7_exec_parse@basic-allocation: - shard-tglu: NOTRUN -> [SKIP][91] ([fdo#109289]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-9/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@basic-rejected: - shard-dg1: NOTRUN -> [SKIP][92] ([fdo#109289]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-14/igt@gen7_exec_parse@basic-rejected.html * igt@gen7_exec_parse@chained-batch: - shard-apl: NOTRUN -> [SKIP][93] ([fdo#109271]) +30 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-apl4/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@allowed-all: - shard-apl: [PASS][94] -> [INCOMPLETE][95] ([i915#5566]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-apl7/igt@gen9_exec_parse@allowed-all.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-apl1/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-chained: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#2856]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-8/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-param: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-9/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#2856]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-1/igt@gen9_exec_parse@shadow-peek.html * igt@i915_hangman@gt-engine-error@vcs0: - shard-mtlp: [PASS][99] -> [FAIL][100] ([i915#7069]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-1/igt@i915_hangman@gt-engine-error@vcs0.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-5/igt@i915_hangman@gt-engine-error@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: NOTRUN -> [ABORT][101] ([i915#8489] / [i915#8668]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#7178]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-19/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#8399]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-4/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [PASS][104] -> [FAIL][105] ([i915#3591]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#1397]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@fences-dpms: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4077]) +4 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-3/igt@i915_pm_rpm@fences-dpms.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-dg2: NOTRUN -> [SKIP][108] ([fdo#109506]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-2/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg1: [PASS][109] -> [SKIP][110] ([i915#1397]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-12/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][111] -> [SKIP][112] ([i915#1397]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-4/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@pc8-residency: - shard-dg1: NOTRUN -> [SKIP][113] ([fdo#109506]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-12/igt@i915_pm_rpm@pc8-residency.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#6621]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-10/igt@i915_pm_rps@min-max-config-loaded.html - shard-dg1: NOTRUN -> [SKIP][115] ([i915#6621]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-12/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4387]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-7/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg2: NOTRUN -> [SKIP][117] ([fdo#109303]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-2/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][118] ([fdo#109302]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-3/igt@i915_query@query-topology-unsupported.html - shard-tglu: NOTRUN -> [SKIP][119] ([fdo#109302]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-4/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][120] ([i915#9311]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-5/igt@i915_selftest@mock@memory_region.html - shard-mtlp: NOTRUN -> [DMESG-WARN][121] ([i915#9311]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#4212]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-10/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#8502]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#8709]) +11 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#6228]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#404]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-17/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#1769] / [i915#3555]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][128] ([i915#1769] / [i915#3555]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5286]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-16/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][130] -> [FAIL][131] ([i915#3763] / [i915#5138]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#5286]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][133] ([fdo#111615] / [i915#5286]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][134] ([fdo#111614]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-2/igt@kms_big_fb@linear-8bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3638]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-19/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][136] ([fdo#111614]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][137] ([fdo#111615]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-tglu: [PASS][138] -> [FAIL][139] ([i915#3743]) +1 other test fail [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#4538] / [i915#5190]) +5 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#5190]) +17 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][142] ([fdo#111615]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#4538]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#2705]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-6/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#5354] / [i915#6095]) +6 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-5/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#5354] / [i915#6095]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-1/igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#3886] / [i915#5354] / [i915#6095]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][148] ([fdo#109271] / [i915#3886]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-apl3/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#3689] / [i915#3886] / [i915#5354]) +12 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-6/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-18/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#3689] / [i915#5354] / [i915#6095]) +6 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-16/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][152] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-7/igt@kms_ccs@pipe-c-ccs-on-another-bo-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][153] ([fdo#109271]) +6 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-glk2/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-8/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#5354]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-2/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_dg2_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#5354] / [i915#6095]) +14 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-19/igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3689] / [i915#5354]) +18 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-6/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-yf_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#5354] / [i915#6095]) +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-8/igt@kms_ccs@pipe-d-missing-ccs-buffer-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#4087] / [i915#7213]) +3 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-0-25: - shard-tglu: NOTRUN -> [SKIP][160] ([fdo#111827]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-10/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg1: NOTRUN -> [SKIP][161] ([fdo#111827]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-16/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][162] ([fdo#111827]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-1/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_edid@dp-edid-read: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#7828]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-8/igt@kms_chamelium_edid@dp-edid-read.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#7828]) +10 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-2/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#7828]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#7828]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-2/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#7828]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#7118]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#3116] / [i915#3299]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3299]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3359]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-dg1: NOTRUN -> [SKIP][172] ([i915#3359]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-19/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#3359]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#3555]) +4 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-19/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#8814]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#3555]) +10 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-edp-1: - shard-mtlp: [PASS][177] -> [DMESG-WARN][178] ([i915#8561]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-edp-1.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-edp-1.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][179] ([fdo#109274] / [fdo#111767] / [i915#5354]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][180] ([fdo#111767] / [fdo#111825]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-12/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#4103] / [i915#4213]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][182] ([fdo#109274] / [i915#5354]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html - shard-tglu: NOTRUN -> [SKIP][183] ([fdo#109274]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][184] -> [FAIL][185] ([i915#2346]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@single-bo@all-pipes: - shard-mtlp: [PASS][186] -> [DMESG-WARN][187] ([i915#2017]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-3/igt@kms_cursor_legacy@single-bo@all-pipes.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-2/igt@kms_dsc@dsc-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#3469]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-7/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#3469]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-19/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_fence_pin_leak: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#4881]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-3/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][192] ([fdo#109274]) +8 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-1/igt@kms_flip@2x-blocking-wf_vblank.html - shard-rkl: NOTRUN -> [SKIP][193] ([fdo#111825]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-2/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-snb: NOTRUN -> [SKIP][194] ([fdo#109271] / [fdo#111767]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-snb5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-dg2: NOTRUN -> [SKIP][195] ([fdo#109274] / [fdo#111767]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-tglu: NOTRUN -> [SKIP][196] ([fdo#109274] / [fdo#111767] / [i915#3637]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3637]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][198] ([fdo#109274] / [i915#3637]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-4/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1: - shard-snb: NOTRUN -> [DMESG-WARN][199] ([i915#8841]) +1 other test dmesg-warn [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#2587] / [i915#2672]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#2587] / [i915#2672]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#2672]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#2672] / [i915#3555]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg1: NOTRUN -> [SKIP][204] ([fdo#109285]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-12/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#5274]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [FAIL][206] ([i915#6880]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#5354]) +67 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-10/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-rkl: NOTRUN -> [SKIP][208] ([fdo#111825] / [i915#1825]) +3 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-2/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][209] ([i915#8708]) +24 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][210] ([fdo#111825]) +21 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#5460]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#3458]) +17 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#3023]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#8708]) +5 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#8708]) +5 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][216] ([fdo#109280]) +5 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][217] ([fdo#110189]) +6 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#3458]) +6 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#1825]) +4 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8228]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-1/igt@kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8228]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@kms_hdr@static-swap.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][222] ([fdo#109289]) +6 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#8806]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][224] ([i915#8292]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#5235]) +23 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-dp-4: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#5235]) +19 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][227] ([fdo#109271]) +91 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-snb2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#6524] / [i915#6805]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#6524]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-16/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#658]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][231] ([fdo#109642] / [fdo#111068] / [i915#658]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][232] ([fdo#111068] / [i915#658]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-15/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#658]) +4 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#1072]) +2 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-19/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_psr@psr2_primary_render: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#1072]) +3 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-7/igt@kms_psr@psr2_primary_render.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#4235]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-3/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#4235] / [i915#5190]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-dg1: NOTRUN -> [SKIP][238] ([fdo#111615] / [i915#5289]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#4235]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#3555]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#4098]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-dg2: NOTRUN -> [SKIP][242] ([fdo#109309]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-1/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-snb: [PASS][243] -> [FAIL][244] ([i915#9196]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-snb1/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-snb1/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html - shard-tglu: [PASS][245] -> [FAIL][246] ([i915#9196]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-mtlp: NOTRUN -> [FAIL][247] ([i915#9196]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_universal_plane@cursor-fb-leak-pipe-c: - shard-dg1: [PASS][248] -> [FAIL][249] ([i915#9196]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg1-12/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-16/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html * igt@kms_universal_plane@universal-plane-pipe-c-sanity: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#4070] / [i915#6768]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-1/igt@kms_universal_plane@universal-plane-pipe-c-sanity.html * igt@kms_writeback@writeback-check-output: - shard-apl: NOTRUN -> [SKIP][251] ([fdo#109271] / [i915#2437]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-apl4/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#2437]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-1/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#7387]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@perf@global-sseu-config-invalid.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][254] -> [FAIL][255] ([i915#7484]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@per-context-mode-unprivileged: - shard-mtlp: NOTRUN -> [SKIP][256] ([fdo#109289]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-2/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [PASS][257] -> [FAIL][258] ([i915#4349]) +3 other tests fail [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-5/igt@perf_pmu@busy-double-start@bcs0.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#8850]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-1/igt@perf_pmu@cpu-hotplug.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [INCOMPLETE][260] ([i915#5493]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#3708]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-14/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#3291] / [i915#3708]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#3708] / [i915#4077]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-6/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#3708]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-11/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@sync@vecs0: - shard-mtlp: [PASS][265] -> [ABORT][266] ([i915#8875]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-2/igt@prime_vgem@sync@vecs0.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-6/igt@prime_vgem@sync@vecs0.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#2575]) +5 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-15/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_mmap@mmap-bad-handle: - shard-rkl: NOTRUN -> [SKIP][268] ([fdo#109315]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-2/igt@v3d/v3d_mmap@mmap-bad-handle.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#2575]) +13 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-7/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-tglu: NOTRUN -> [SKIP][270] ([fdo#109315] / [i915#2575]) +2 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-4/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@v3d/v3d_submit_csd@multisync-out-syncs: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#2575]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-2/igt@v3d/v3d_submit_csd@multisync-out-syncs.html * igt@vc4/vc4_label_bo@set-bad-name: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#7711]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-4/igt@vc4/vc4_label_bo@set-bad-name.html * igt@vc4/vc4_purgeable_bo@mark-purgeable: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#7711]) +2 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-17/igt@vc4/vc4_purgeable_bo@mark-purgeable.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#7711]) +10 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-7/igt@vc4/vc4_tiling@get-bad-modifier.html * igt@vc4/vc4_wait_bo@used-bo: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#2575]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-8/igt@vc4/vc4_wait_bo@used-bo.html #### Possible fixes #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [INCOMPLETE][276] ([i915#9364]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_isolation@preservation-s3@vcs0: - shard-dg1: [FAIL][278] ([fdo#103375]) -> [PASS][279] +2 other tests pass [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg1-14/igt@gem_ctx_isolation@preservation-s3@vcs0.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-18/igt@gem_ctx_isolation@preservation-s3@vcs0.html * igt@gem_ctx_persistence@legacy-engines-hostile@vebox: - shard-mtlp: [FAIL][280] ([i915#2410]) -> [PASS][281] +2 other tests pass [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-2/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-5/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html * igt@gem_exec_endless@dispatch@vcs0: - shard-tglu: [TIMEOUT][282] ([i915#3778] / [i915#7941]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-tglu-10/igt@gem_exec_endless@dispatch@vcs0.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-6/igt@gem_exec_endless@dispatch@vcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: [FAIL][284] ([i915#2842]) -> [PASS][285] +1 other test pass [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-1/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_reloc@basic-scanout@bcs0: - shard-snb: [SKIP][286] ([fdo#109271]) -> [PASS][287] +2 other tests pass [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-snb2/igt@gem_exec_reloc@basic-scanout@bcs0.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-snb5/igt@gem_exec_reloc@basic-scanout@bcs0.html * igt@gem_spin_batch@user-each: - shard-mtlp: [DMESG-FAIL][288] ([i915#8962]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-4/igt@gem_spin_batch@user-each.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-7/igt@gem_spin_batch@user-each.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: [FAIL][290] ([i915#8456]) -> [PASS][291] +2 other tests pass [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-2/igt@i915_hangman@detector@vcs0.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-3/igt@i915_hangman@detector@vcs0.html * igt@i915_hangman@gt-error-state-capture@vecs0: - shard-mtlp: [ABORT][292] ([i915#9414]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-2/igt@i915_hangman@gt-error-state-capture@vecs0.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-6/igt@i915_hangman@gt-error-state-capture@vecs0.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg2: [SKIP][294] ([i915#1397]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg2-7/igt@i915_pm_rpm@modeset-lpsp-stress.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress.html - shard-rkl: [SKIP][296] ([i915#1397]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg1: [SKIP][298] ([i915#1397]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_selftest@live@requests: - shard-mtlp: [INCOMPLETE][300] -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-8/igt@i915_selftest@live@requests.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-8/igt@i915_selftest@live@requests.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][302] ([i915#5138]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_cursor_crc@cursor-size-change@pipe-a-edp-1: - shard-mtlp: [DMESG-WARN][304] ([i915#2017] / [i915#9157]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-6/igt@kms_cursor_crc@cursor-size-change@pipe-a-edp-1.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-2/igt@kms_cursor_crc@cursor-size-change@pipe-a-edp-1.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-dg2: [FAIL][306] ([i915#6880]) -> [PASS][307] +1 other test pass [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1: - shard-apl: [INCOMPLETE][308] ([i915#180] / [i915#9392]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html * {igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a}: - shard-dg1: [SKIP][310] ([i915#1937]) -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-19/igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-rkl: [FAIL][312] ([i915#9196]) -> [PASS][313] +1 other test pass [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_universal_plane@cursor-fb-leak-pipe-c: - shard-tglu: [FAIL][314] ([i915#9196]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][316] ([i915#4349]) -> [PASS][317] +11 other tests pass [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@busy-idle@vcs0: - shard-dg1: [FAIL][318] ([i915#4349]) -> [PASS][319] +2 other tests pass [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg1-18/igt@perf_pmu@busy-idle@vcs0.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-17/igt@perf_pmu@busy-idle@vcs0.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: [FAIL][320] ([i915#1731]) -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-3/igt@sysfs_heartbeat_interval@mixed@vecs0.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-2/igt@sysfs_heartbeat_interval@mixed@vecs0.html * igt@sysfs_preempt_timeout@timeout@vecs0: - shard-mtlp: [ABORT][322] ([i915#8521] / [i915#8865]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-mtlp-2/igt@sysfs_preempt_timeout@timeout@vecs0.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-mtlp-3/igt@sysfs_preempt_timeout@timeout@vecs0.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-tglu: [FAIL][324] ([i915#2681] / [i915#3591]) -> [WARN][325] ([i915#2681]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][326] ([i915#7118] / [i915#7162]) -> [SKIP][327] ([i915#7118]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg2-11/igt@kms_content_protection@type1.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg2-6/igt@kms_content_protection@type1.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][328] ([i915#3955]) -> [SKIP][329] ([fdo#110189] / [i915#3955]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][330] ([fdo#109285]) -> [SKIP][331] ([fdo#109285] / [i915#4098]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1: - shard-snb: [DMESG-WARN][332] ([i915#8841]) -> [DMESG-FAIL][333] ([fdo#103375]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-snb5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-snb7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][334] ([i915#1072]) -> [SKIP][335] ([i915#1072] / [i915#4078]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg1-17/igt@kms_psr@cursor_plane_move.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-16/igt@kms_psr@cursor_plane_move.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: [SKIP][336] ([i915#4423] / [i915#4884]) -> [SKIP][337] ([i915#4884]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13698/shard-dg1-14/igt@kms_rotation_crc@exhaust-fences.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/shard-dg1-17/igt@kms_rotation_crc@exhaust-fences.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#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#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#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#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3763]: https://gitlab.freedesktop.org/drm/intel/issues/3763 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [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#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [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#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7016]: https://gitlab.freedesktop.org/drm/intel/issues/7016 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9157]: https://gitlab.freedesktop.org/drm/intel/issues/9157 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [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#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9436]: https://gitlab.freedesktop.org/drm/intel/issues/9436 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7508 -> IGTPW_9899 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13698: 3d2a99736b6bdeebd24117c9de0a8d369f10da62 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9899: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/index.html IGT_7508: f366406b05ca6b3d16eaa734a91e0833bd159f54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9899/index.html [-- Attachment #2: Type: text/html, Size: 108301 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-10-02 13:42 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-10-02 7:11 [igt-dev] [PATCH i-g-t] tests/kms_frontbuffer_tracking: Remove badstride subtests Ville Syrjala 2023-10-02 8:41 ` Hogander, Jouni 2023-10-02 12:00 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-10-02 13:14 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-10-02 13:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox