* [PATCH i-g-t v2] tests/intel/xe_oa: Check gtidle before rc6 disable test
@ 2024-10-03 11:57 Soham Purkait
2024-10-03 12:25 ` Riana Tauro
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: Soham Purkait @ 2024-10-03 11:57 UTC (permalink / raw)
To: igt-dev; +Cc: riana.tauro, anshuman.gupta, soham.purkait
Rc6 disable test has been modified in order to check the
presence of gtidle node in sysfs gt0 path through the following
code snippets :
igt_require(xe_sysfs_gt_has_node(drm_fd, 0, "gtidle")).
As of now only Render GT (gt0) is used for rc6 disable test through OA
activation. Standalone Media (gt1) is not supported yet for the same.
Signed-off-by: Soham Purkait <soham.purkait@intel.com>
---
tests/intel/xe_oa.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
index 9be4fd633..6538d6323 100644
--- a/tests/intel/xe_oa.c
+++ b/tests/intel/xe_oa.c
@@ -4644,8 +4644,10 @@ igt_main
test_oa_unit_concurrent_oa_buffer_read();
}
- igt_subtest("rc6-disable")
+ igt_subtest("rc6-disable"){
+ igt_require(xe_sysfs_gt_has_node(drm_fd, 0, "gtidle"));
test_rc6_disable();
+ }
igt_subtest_with_dynamic("stress-open-close") {
__for_one_hwe_in_oag(hwe)
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH i-g-t v2] tests/intel/xe_oa: Check gtidle before rc6 disable test 2024-10-03 11:57 [PATCH i-g-t v2] tests/intel/xe_oa: Check gtidle before rc6 disable test Soham Purkait @ 2024-10-03 12:25 ` Riana Tauro 2024-10-03 16:57 ` Dixit, Ashutosh 2024-10-03 15:20 ` ✓ CI.xeBAT: success for " Patchwork ` (4 subsequent siblings) 5 siblings, 1 reply; 8+ messages in thread From: Riana Tauro @ 2024-10-03 12:25 UTC (permalink / raw) To: Soham Purkait, igt-dev; +Cc: anshuman.gupta Hi Soham reword the subject On 10/3/2024 5:27 PM, Soham Purkait wrote: > Rc6 disable test has been modified in order to check the > presence of gtidle node in sysfs gt0 path through the following > code snippets : > igt_require(xe_sysfs_gt_has_node(drm_fd, 0, "gtidle")). do not add code snippet in commit message > > As of now only Render GT (gt0) is used for rc6 disable test through OA > activation. Standalone Media (gt1) is not supported yet for the same. reword? OA is supported only on render gt. add version history > > Signed-off-by: Soham Purkait <soham.purkait@intel.com> > --- > tests/intel/xe_oa.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c > index 9be4fd633..6538d6323 100644 > --- a/tests/intel/xe_oa.c > +++ b/tests/intel/xe_oa.c > @@ -4644,8 +4644,10 @@ igt_main > test_oa_unit_concurrent_oa_buffer_read(); > } > > - igt_subtest("rc6-disable") > + igt_subtest("rc6-disable"){ space before { Thanks, Riana > + igt_require(xe_sysfs_gt_has_node(drm_fd, 0, "gtidle")); > test_rc6_disable(); > + } > > igt_subtest_with_dynamic("stress-open-close") { > __for_one_hwe_in_oag(hwe) ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/xe_oa: Check gtidle before rc6 disable test 2024-10-03 12:25 ` Riana Tauro @ 2024-10-03 16:57 ` Dixit, Ashutosh 0 siblings, 0 replies; 8+ messages in thread From: Dixit, Ashutosh @ 2024-10-03 16:57 UTC (permalink / raw) To: Riana Tauro; +Cc: Soham Purkait, igt-dev, anshuman.gupta On Thu, 03 Oct 2024 05:25:18 -0700, Riana Tauro wrote: > Hi Soham > reword the subject > > On 10/3/2024 5:27 PM, Soham Purkait wrote: > > Rc6 disable test has been modified in order to check the > > presence of gtidle node in sysfs gt0 path through the following > > code snippets : > > igt_require(xe_sysfs_gt_has_node(drm_fd, 0, "gtidle")). > do not add code snippet in commit message Commit message should state the "why" of this patch, not described contents of the patch. "Why" meaning why is the patch needed or the reason it is being sent. > > > > As of now only Render GT (gt0) is used for rc6 disable test through OA > > activation. Standalone Media (gt1) is not supported yet for the same. > reword? > OA is supported only on render gt. This information looks irrelevant for the patch. It is also incorrect I think. > > add version history > > > > Signed-off-by: Soham Purkait <soham.purkait@intel.com> > > --- > > tests/intel/xe_oa.c | 4 +++- > > 1 file changed, 3 insertions(+), 1 deletion(-) > > > > diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c > > index 9be4fd633..6538d6323 100644 > > --- a/tests/intel/xe_oa.c > > +++ b/tests/intel/xe_oa.c > > @@ -4644,8 +4644,10 @@ igt_main > > test_oa_unit_concurrent_oa_buffer_read(); > > } > > - igt_subtest("rc6-disable") > > + igt_subtest("rc6-disable"){ > space before { Check tabs too (use tabs not spaces). > > Thanks, > Riana > > + igt_require(xe_sysfs_gt_has_node(drm_fd, 0, "gtidle")); Is this even possible? Why do we need to check this? > > test_rc6_disable(); > > + } > > igt_subtest_with_dynamic("stress-open-close") { > > __for_one_hwe_in_oag(hwe) ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.xeBAT: success for tests/intel/xe_oa: Check gtidle before rc6 disable test 2024-10-03 11:57 [PATCH i-g-t v2] tests/intel/xe_oa: Check gtidle before rc6 disable test Soham Purkait 2024-10-03 12:25 ` Riana Tauro @ 2024-10-03 15:20 ` Patchwork 2024-10-03 15:22 ` ✗ CI.xeBAT: failure " Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-10-03 15:20 UTC (permalink / raw) To: Soham Purkait; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3918 bytes --] == Series Details == Series: tests/intel/xe_oa: Check gtidle before rc6 disable test URL : https://patchwork.freedesktop.org/series/139496/ State : success == Summary == CI Bug Log - changes from XEIGT_8051_BAT -> XEIGTPW_11863_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11863_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_evict@evict-beng-small: - bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/bat-adlp-7/igt@xe_evict@evict-beng-small.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-adlp-7: NOTRUN -> [SKIP][2] ([Intel XE#288]) +32 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-dg2-oem2: [PASS][3] -> [INCOMPLETE][4] ([Intel XE#2874]) +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#2229]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-lnl-1: [FAIL][6] -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate: - bat-lnl-2: [DMESG-WARN][8] -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/bat-lnl-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/bat-lnl-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-adlp-7: [INCOMPLETE][10] ([Intel XE#2874]) -> [PASS][11] +1 other test pass [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 Build changes ------------- * IGT: IGT_8051 -> IGTPW_11863 * Linux: xe-2010-af143300756485947a455fe84414adb35904c230 -> xe-2012-d5f296e1787dec57ffe7d4a7ad8ec6d6e4d8addc IGTPW_11863: 11863 IGT_8051: c2efcb5f207eebb0c19106f27b310f61ded6f11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2010-af143300756485947a455fe84414adb35904c230: af143300756485947a455fe84414adb35904c230 xe-2012-d5f296e1787dec57ffe7d4a7ad8ec6d6e4d8addc: d5f296e1787dec57ffe7d4a7ad8ec6d6e4d8addc == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/index.html [-- Attachment #2: Type: text/html, Size: 4738 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ CI.xeBAT: failure for tests/intel/xe_oa: Check gtidle before rc6 disable test 2024-10-03 11:57 [PATCH i-g-t v2] tests/intel/xe_oa: Check gtidle before rc6 disable test Soham Purkait 2024-10-03 12:25 ` Riana Tauro 2024-10-03 15:20 ` ✓ CI.xeBAT: success for " Patchwork @ 2024-10-03 15:22 ` Patchwork 2024-10-03 15:26 ` ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-10-03 15:22 UTC (permalink / raw) To: Soham Purkait; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3918 bytes --] == Series Details == Series: tests/intel/xe_oa: Check gtidle before rc6 disable test URL : https://patchwork.freedesktop.org/series/139496/ State : failure == Summary == CI Bug Log - changes from XEIGT_8051_BAT -> XEIGTPW_11863_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11863_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_evict@evict-beng-small: - bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/bat-adlp-7/igt@xe_evict@evict-beng-small.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-adlp-7: NOTRUN -> [SKIP][2] ([Intel XE#288]) +32 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-dg2-oem2: [PASS][3] -> [INCOMPLETE][4] ([Intel XE#2874]) +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#2229]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-lnl-1: [FAIL][6] -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate: - bat-lnl-2: [DMESG-WARN][8] -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/bat-lnl-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/bat-lnl-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-adlp-7: [INCOMPLETE][10] ([Intel XE#2874]) -> [PASS][11] +1 other test pass [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 Build changes ------------- * IGT: IGT_8051 -> IGTPW_11863 * Linux: xe-2010-af143300756485947a455fe84414adb35904c230 -> xe-2012-d5f296e1787dec57ffe7d4a7ad8ec6d6e4d8addc IGTPW_11863: 11863 IGT_8051: c2efcb5f207eebb0c19106f27b310f61ded6f11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2010-af143300756485947a455fe84414adb35904c230: af143300756485947a455fe84414adb35904c230 xe-2012-d5f296e1787dec57ffe7d4a7ad8ec6d6e4d8addc: d5f296e1787dec57ffe7d4a7ad8ec6d6e4d8addc == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/index.html [-- Attachment #2: Type: text/html, Size: 4738 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/xe_oa: Check gtidle before rc6 disable test 2024-10-03 11:57 [PATCH i-g-t v2] tests/intel/xe_oa: Check gtidle before rc6 disable test Soham Purkait ` (2 preceding siblings ...) 2024-10-03 15:22 ` ✗ CI.xeBAT: failure " Patchwork @ 2024-10-03 15:26 ` Patchwork 2024-10-03 16:07 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-08 2:40 ` ✗ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-10-03 15:26 UTC (permalink / raw) To: Soham Purkait; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9168 bytes --] == Series Details == Series: tests/intel/xe_oa: Check gtidle before rc6 disable test URL : https://patchwork.freedesktop.org/series/139496/ State : success == Summary == CI Bug Log - changes from IGT_8051 -> IGTPW_11863 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/index.html Participating hosts (42 -> 42) ------------------------------ Additional (1): fi-ivb-3770 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_11863 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_mmap@basic: - bat-dg2-14: NOTRUN -> [SKIP][1] ([i915#4083]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-dg2-14: NOTRUN -> [SKIP][2] ([i915#4079]) +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg2-14: NOTRUN -> [SKIP][3] ([i915#4077]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@gem_tiled_fence_blits@basic.html * igt@i915_module_load@load: - bat-dg2-9: [PASS][4] -> [DMESG-WARN][5] ([i915#11548]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8051/bat-dg2-9/igt@i915_module_load@load.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-9/igt@i915_module_load@load.html * igt@i915_pm_rps@basic-api: - bat-dg2-14: NOTRUN -> [SKIP][6] ([i915#11681] / [i915#6621]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-14: NOTRUN -> [SKIP][7] ([i915#5190]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-14: NOTRUN -> [SKIP][8] ([i915#4215] / [i915#5190]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-dg2-14: NOTRUN -> [SKIP][9] ([i915#4212]) +7 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-14: NOTRUN -> [SKIP][10] ([i915#4103] / [i915#4213]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-dg2-14: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#3840]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-14: NOTRUN -> [SKIP][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-14: NOTRUN -> [SKIP][13] ([i915#5274]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-vga-1: - fi-ivb-3770: NOTRUN -> [SKIP][14] +23 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/fi-ivb-3770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-vga-1.html * igt@kms_pm_backlight@basic-brightness: - bat-dg2-14: NOTRUN -> [SKIP][15] ([i915#5354]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-dg2-14: NOTRUN -> [SKIP][16] ([i915#1072] / [i915#9732]) +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-14: NOTRUN -> [SKIP][17] ([i915#3555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-14: NOTRUN -> [SKIP][18] ([i915#3708]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-gtt: - bat-dg2-14: NOTRUN -> [SKIP][19] ([i915#3708] / [i915#4077]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - bat-dg2-14: NOTRUN -> [SKIP][20] ([i915#3291] / [i915#3708]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-14/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_module_load@reload: - fi-kbl-7567u: [DMESG-WARN][21] ([i915#1982]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8051/fi-kbl-7567u/igt@i915_module_load@reload.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/fi-kbl-7567u/igt@i915_module_load@reload.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [SKIP][23] ([i915#9197]) -> [PASS][24] +2 other tests pass [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8051/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Warnings #### * igt@i915_selftest@live: - bat-arls-5: [DMESG-WARN][25] ([i915#10341] / [i915#12133]) -> [ABORT][26] ([i915#12061] / [i915#12133]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8051/bat-arls-5/igt@i915_selftest@live.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-arls-5/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-WARN][27] ([i915#10341] / [i915#11637]) -> [ABORT][28] ([i915#12061]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8051/bat-arls-5/igt@i915_selftest@live@workarounds.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/bat-arls-5/igt@i915_selftest@live@workarounds.html [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11548]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11548 [i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8051 -> IGTPW_11863 * Linux: CI_DRM_15478 -> CI_DRM_15481 CI-20190529: 20190529 CI_DRM_15478: af143300756485947a455fe84414adb35904c230 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15481: 17c0158bdb239d8b6d23834db5595ea422b69915 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11863: 11863 IGT_8051: c2efcb5f207eebb0c19106f27b310f61ded6f11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/index.html [-- Attachment #2: Type: text/html, Size: 10953 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ CI.xeFULL: failure for tests/intel/xe_oa: Check gtidle before rc6 disable test 2024-10-03 11:57 [PATCH i-g-t v2] tests/intel/xe_oa: Check gtidle before rc6 disable test Soham Purkait ` (3 preceding siblings ...) 2024-10-03 15:26 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-10-03 16:07 ` Patchwork 2024-10-08 2:40 ` ✗ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-10-03 16:07 UTC (permalink / raw) To: Soham Purkait; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 50386 bytes --] == Series Details == Series: tests/intel/xe_oa: Check gtidle before rc6 disable test URL : https://patchwork.freedesktop.org/series/139496/ State : failure == Summary == CI Bug Log - changes from XEIGT_8051_full -> XEIGTPW_11863_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11863_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11863_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11863_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-7/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-dg2-set2: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-dg2-432/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-464/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-dg2-set2: [PASS][4] -> [DMESG-WARN][5] +1 other test dmesg-warn [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-dg2-435/igt@kms_cursor_legacy@torture-bo@pipe-a.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-432/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_fbcon_fbt@psr: - shard-lnl: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-7/igt@kms_fbcon_fbt@psr.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-5/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@basic-flip-vs-modeset@c-hdmi-a6: - shard-dg2-set2: [PASS][8] -> [INCOMPLETE][9] +1 other test incomplete [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-dg2-464/igt@kms_flip@basic-flip-vs-modeset@c-hdmi-a6.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-432/igt@kms_flip@basic-flip-vs-modeset@c-hdmi-a6.html * igt@kms_flip@flip-vs-suspend-interruptible@c-edp1: - shard-lnl: [PASS][10] -> [INCOMPLETE][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-8/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-4/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-lnl: NOTRUN -> [FAIL][12] +1 other test fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][13] [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html #### Warnings #### * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2-set2: [SKIP][14] ([Intel XE#455]) -> [SKIP][15] [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-dg2-432/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-463/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_force_connector_basic@force-edid: - {shard-bmg}: NOTRUN -> [SKIP][16] +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-bmg-4/igt@kms_force_connector_basic@force-edid.html Known issues ------------ Here are the changes found in XEIGTPW_11863_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#623]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_atomic_transition@modeset-transition-nonblocking: - shard-lnl: NOTRUN -> [FAIL][18] ([Intel XE#1701]) +1 other test fail [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-8/igt@kms_atomic_transition@modeset-transition-nonblocking.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-lnl: [PASS][19] -> [FAIL][20] ([Intel XE#1426]) +1 other test fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-2/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1407]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-lnl: [PASS][22] -> [FAIL][23] ([Intel XE#1659]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [FAIL][24] ([Intel XE#1659]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#316]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +6 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-1/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +19 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-435/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1477]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#367]) +5 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2191]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#367]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-6/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#787]) +111 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#2907]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-436/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +8 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +31 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#2669]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#314]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1152]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-7/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-max: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#306]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-7/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#306]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-433/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#373]) +11 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#373]) +5 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-6/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#307]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1468]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-6/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#308]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1424]) +4 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-7/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#309]) +7 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#323]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#776]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-433/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1137]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-464/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1421]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-1/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1: - shard-lnl: NOTRUN -> [FAIL][52] ([Intel XE#886]) +3 other tests fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-1/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html * igt@kms_flip@plain-flip-fb-recreate@c-edp1: - shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#886]) +3 other tests fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-1/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1401]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-edid: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#2423] / [i915#2575]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-463/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#651]) +44 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#658]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#651]) +8 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#656]) +24 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#653]) +43 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_getfb@getfb2-accept-ccs: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#2340]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-6/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_hdr@static-swap: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1503] / [Intel XE#599]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-1/igt@kms_hdr@static-swap.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#346]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#2927]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-466/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#599]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-1/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#2763] / [Intel XE#455]) +7 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#2763]) +7 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#2763]) +11 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#870]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-433/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][72] -> [FAIL][73] ([Intel XE#1430]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-lnl: NOTRUN -> [FAIL][74] ([Intel XE#2029]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-8/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1439]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@legacy-planes: - shard-lnl: [PASS][76] -> [INCOMPLETE][77] ([Intel XE#1620] / [Intel XE#2864]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-3/igt@kms_pm_rpm@legacy-planes.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-4/igt@kms_pm_rpm@legacy-planes.html * igt@kms_pm_rpm@legacy-planes@plane-41: - shard-lnl: [PASS][78] -> [DMESG-FAIL][79] ([Intel XE#1620]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-3/igt@kms_pm_rpm@legacy-planes@plane-41.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-4/igt@kms_pm_rpm@legacy-planes@plane-41.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#1489]) +10 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#2893]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#1122]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1128]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-5/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#2850]) +20 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-434/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@pr-basic: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1406]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-1/igt@kms_psr@pr-basic.html * igt@kms_rotation_crc@primary-rotation-270: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1437]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-1/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1127]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#327]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1435]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_vblank@accuracy-idle: - shard-lnl: [PASS][90] -> [FAIL][91] ([Intel XE#1523]) +1 other test fail [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-6/igt@kms_vblank@accuracy-idle.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-7/igt@kms_vblank@accuracy-idle.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][92] -> [FAIL][93] ([Intel XE#2159]) +1 other test fail [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-basic: - shard-lnl: [PASS][94] -> [FAIL][95] ([Intel XE#2443]) +1 other test fail [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-4/igt@kms_vrr@flip-basic.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-4/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#455]) +18 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-432/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-check-output: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#756]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-1/igt@kms_writeback@writeback-check-output.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1091] / [Intel XE#2849]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-435/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1447]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-3/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#1126]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2905]) +11 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-435/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][103] ([Intel XE#1473]) +1 other test timeout [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-432/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-threads-small: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#688]) +6 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-6/igt@xe_evict@evict-beng-threads-small.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1392]) +5 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-3/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#288]) +37 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-prefetch.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2360]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#2905]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-6/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][109] ([Intel XE#1999]) +2 other tests fail [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-436/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_oa@mmio-triggered-reports: - shard-lnl: [PASS][110] -> [FAIL][111] ([Intel XE#2249]) +1 other test fail [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-5/igt@xe_oa@mmio-triggered-reports.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-5/igt@xe_oa@mmio-triggered-reports.html * igt@xe_oa@oa-exponents: - shard-lnl: [PASS][112] -> [FAIL][113] ([Intel XE#2723]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-7/igt@xe_oa@oa-exponents.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-5/igt@xe_oa@oa-exponents.html * igt@xe_oa@oa-exponents@ccs-0: - shard-lnl: NOTRUN -> [FAIL][114] ([Intel XE#2723]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-5/igt@xe_oa@oa-exponents@ccs-0.html * igt@xe_oa@oa-regs-whitelisted: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2541]) +6 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-432/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#977]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-432/igt@xe_pat@pat-index-xe2.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][117] ([Intel XE#1173]) +1 other test fail [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-432/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-463/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@s2idle-basic: - shard-dg2-set2: NOTRUN -> [ABORT][119] ([Intel XE#1358] / [Intel XE#2915]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-432/igt@xe_pm@s2idle-basic.html * igt@xe_pm@s3-vm-bind-userptr: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#584]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-3/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_pm@s4-multiple-execs: - shard-lnl: [PASS][121] -> [ABORT][122] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-5/igt@xe_pm@s4-multiple-execs.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [PASS][123] -> [ABORT][124] ([Intel XE#1794]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-6/igt@xe_pm@s4-vm-bind-unbind-all.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#944]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-466/igt@xe_query@multigpu-query-engines.html #### Possible fixes #### * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-lnl: [FAIL][126] ([Intel XE#1659]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4: - shard-dg2-set2: [INCOMPLETE][128] ([Intel XE#1195]) -> [PASS][129] +1 other test pass [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [FAIL][130] ([Intel XE#1475]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_flip@flip-vs-suspend-interruptible: - {shard-bmg}: [ABORT][132] ([Intel XE#2899]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-edp1: - shard-lnl: [DMESG-WARN][134] -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-8/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3: - {shard-bmg}: [ABORT][136] -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a3: - {shard-bmg}: [DMESG-WARN][138] ([Intel XE#877]) -> [PASS][139] +2 other tests pass [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-bmg-4/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-bmg-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [FAIL][140] ([Intel XE#886]) -> [PASS][141] +3 other tests pass [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_plane@plane-position-covered@pipe-a-plane-3: - shard-lnl: [DMESG-FAIL][142] ([Intel XE#324]) -> [PASS][143] +3 other tests pass [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-7/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html * igt@kms_plane@plane-position-covered@pipe-b-plane-4: - shard-lnl: [DMESG-WARN][144] ([Intel XE#324]) -> [PASS][145] +9 other tests pass [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-7/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][146] ([Intel XE#718]) -> [PASS][147] [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-lnl: [INCOMPLETE][148] ([Intel XE#1620] / [Intel XE#2864]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-1/igt@kms_pm_rpm@universal-planes-dpms.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-3/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_pm_rpm@universal-planes-dpms@plane-41: - shard-lnl: [DMESG-FAIL][150] ([Intel XE#1620]) -> [PASS][151] +4 other tests pass [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-1/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-3/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html * igt@kms_psr@psr-primary-page-flip: - shard-lnl: [TIMEOUT][152] -> [PASS][153] +1 other test pass [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-3/igt@kms_psr@psr-primary-page-flip.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-3/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr@psr2-cursor-render@edp-1: - shard-lnl: [FAIL][154] -> [PASS][155] +1 other test pass [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-8/igt@kms_psr@psr2-cursor-render@edp-1.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-7/igt@kms_psr@psr2-cursor-render@edp-1.html * igt@kms_sequence@queue-busy: - shard-lnl: [INCOMPLETE][156] -> [PASS][157] +2 other tests pass [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-3/igt@kms_sequence@queue-busy.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-6/igt@kms_sequence@queue-busy.html * igt@kms_vrr@max-min: - shard-lnl: [FAIL][158] ([Intel XE#2443]) -> [PASS][159] +1 other test pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-5/igt@kms_vrr@max-min.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-4/igt@kms_vrr@max-min.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][160] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_pm@d3hot-basic-exec: - shard-lnl: [TIMEOUT][162] ([Intel XE#1358] / [Intel XE#1620]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-3/igt@xe_pm@d3hot-basic-exec.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-7/igt@xe_pm@d3hot-basic-exec.html * igt@xe_pm@d3hot-multiple-execs: - shard-lnl: [TIMEOUT][164] ([Intel XE#1358] / [Intel XE#1620] / [Intel XE#2574]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-3/igt@xe_pm@d3hot-multiple-execs.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-5/igt@xe_pm@d3hot-multiple-execs.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-lnl: [ABORT][166] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-8/igt@xe_pm@s4-d3hot-basic-exec.html #### Warnings #### * igt@kms_flip@flip-vs-suspend-interruptible: - shard-lnl: [DMESG-WARN][168] -> [INCOMPLETE][169] ([Intel XE#2049]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-8/igt@kms_flip@flip-vs-suspend-interruptible.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-4/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_plane@plane-position-covered: - shard-lnl: [DMESG-FAIL][170] ([Intel XE#324]) -> [DMESG-WARN][171] ([Intel XE#324]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-2/igt@kms_plane@plane-position-covered.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-lnl-7/igt@kms_plane@plane-position-covered.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][172] ([Intel XE#361]) -> [SKIP][173] ([Intel XE#455]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html * igt@xe_wedged@basic-wedged: - shard-dg2-set2: [DMESG-WARN][174] ([Intel XE#2919]) -> [SKIP][175] ([Intel XE#1130]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-dg2-433/igt@xe_wedged@basic-wedged.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/shard-dg2-463/igt@xe_wedged@basic-wedged.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2574]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2574 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685 [Intel XE#2723]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2899 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2915 [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8051 -> IGTPW_11863 * Linux: xe-2010-af143300756485947a455fe84414adb35904c230 -> xe-2012-d5f296e1787dec57ffe7d4a7ad8ec6d6e4d8addc IGTPW_11863: 11863 IGT_8051: c2efcb5f207eebb0c19106f27b310f61ded6f11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2010-af143300756485947a455fe84414adb35904c230: af143300756485947a455fe84414adb35904c230 xe-2012-d5f296e1787dec57ffe7d4a7ad8ec6d6e4d8addc: d5f296e1787dec57ffe7d4a7ad8ec6d6e4d8addc == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11863/index.html [-- Attachment #2: Type: text/html, Size: 53948 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/xe_oa: Check gtidle before rc6 disable test 2024-10-03 11:57 [PATCH i-g-t v2] tests/intel/xe_oa: Check gtidle before rc6 disable test Soham Purkait ` (4 preceding siblings ...) 2024-10-03 16:07 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-10-08 2:40 ` Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-10-08 2:40 UTC (permalink / raw) To: Soham Purkait; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100275 bytes --] == Series Details == Series: tests/intel/xe_oa: Check gtidle before rc6 disable test URL : https://patchwork.freedesktop.org/series/139496/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15481_full -> IGTPW_11863_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11863_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11863_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_11863/index.html Participating hosts (8 -> 8) ------------------------------ Additional (1): shard-tglu-1 Missing (1): shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11863_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@kms_atomic_transition@plane-all-transition-fencing: - shard-mtlp: [PASS][3] -> [FAIL][4] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-mtlp-5/igt@kms_atomic_transition@plane-all-transition-fencing.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-7/igt@kms_atomic_transition@plane-all-transition-fencing.html * igt@perf@blocking: - shard-dg1: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg1-12/igt@perf@blocking.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-19/igt@perf@blocking.html Known issues ------------ Here are the changes found in IGTPW_11863_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#8411]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-2/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#6230]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-1/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#6230]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-12/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-8/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-1/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8411]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-15/igt@api_intel_bb@object-reloc-purge-cache.html * igt@drm_fdinfo@virtual-busy-idle: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-4/igt@drm_fdinfo@virtual-busy-idle.html - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8414]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-19/igt@drm_fdinfo@virtual-busy-idle.html * igt@gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-13/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@close-race: - shard-rkl: NOTRUN -> [FAIL][16] ([i915#12297]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-2/igt@gem_busy@close-race.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4873]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-6/igt@gem_caching@read-writes.html * igt@gem_ctx_isolation@preservation-s3: - shard-dg1: NOTRUN -> [DMESG-WARN][18] ([i915#4423]) +1 other test dmesg-warn [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-18/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg1: NOTRUN -> [SKIP][19] +14 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-14/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#8555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-9/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#4525]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#3539] / [i915#4852]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@gem_exec_fair@basic-none-rrul.html - shard-dg1: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-18/igt@gem_exec_fair@basic-none-rrul.html - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4473] / [i915#4771]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-2/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][26] ([i915#2842]) +1 other test fail [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][27] ([i915#2842]) +4 other tests fail [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [PASS][28] -> [FAIL][29] ([i915#2842]) +2 other tests fail [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-4/igt@gem_exec_fence@submit3.html - shard-dg1: NOTRUN -> [SKIP][31] ([i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-14/igt@gem_exec_fence@submit3.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-2/igt@gem_exec_fence@submit3.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#3281]) +4 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-13/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +6 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-6/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-dg1: [PASS][38] -> [INCOMPLETE][39] ([i915#2295]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg1-19/igt@gem_exec_whisper@basic-fds-forked-all.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-13/igt@gem_exec_whisper@basic-fds-forked-all.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4860]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-10/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4860]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#4613]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-dg1: NOTRUN -> [SKIP][43] ([i915#12193]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-14/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4565]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-14/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4077]) +5 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-10/igt@gem_mmap_gtt@cpuset-big-copy.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4077]) +4 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-17/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4083]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-5/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4083]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-10/igt@gem_mmap_wc@write-prefaulted.html - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4083]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-16/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@write-display: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3282]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-3/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#3282]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pwrite_snooped: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3282]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-7/igt@gem_pwrite_snooped.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4270]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-1.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4270]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-5/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4270]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-3/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_readwrite@new-obj: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-16/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#8428]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-8/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#5190] / [i915#8428]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-3/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4079]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-8/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4885]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-13/igt@gem_softpin@evict-snoop.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4885]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-7/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4885]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-1/igt@gem_softpin@evict-snoop.html * igt@gem_tiling_max_stride: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-8/igt@gem_tiling_max_stride.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-1/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#3297]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3297]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-7/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@allowed-single: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#2856]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-7/igt@gen9_exec_parse@allowed-single.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#2527]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-13/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-without-end: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#2527]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-3/igt@gen9_exec_parse@batch-without-end.html - shard-tglu: NOTRUN -> [SKIP][72] ([i915#2527] / [i915#2856]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-5/igt@gen9_exec_parse@batch-without-end.html - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#2856]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-3/igt@gen9_exec_parse@batch-without-end.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#6412]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-4/igt@i915_module_load@resize-bar.html - shard-dg1: NOTRUN -> [SKIP][75] ([i915#7178]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-19/igt@i915_module_load@resize-bar.html - shard-tglu: NOTRUN -> [SKIP][76] ([i915#6412]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-5/igt@i915_module_load@resize-bar.html - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#6412]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-5/igt@i915_module_load@resize-bar.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][78] -> [FAIL][79] ([i915#3591]) +1 other test fail [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg1: [PASS][80] -> [DMESG-WARN][81] ([i915#4423]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg1-18/igt@i915_pm_rpm@system-suspend-execbuf.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-18/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#11681]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-5/igt@i915_pm_rps@thresholds.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#6245]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-10/igt@i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][84] ([i915#6245]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-1/igt@i915_query@hwconfig_table.html * igt@i915_selftest@mock@memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][85] ([i915#9311]) +1 other test dmesg-warn [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-4/igt@i915_selftest@mock@memory_region.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#7707]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-6/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4212]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-12/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#8709]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#8709]) +7 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#8709]) +11 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4538] / [i915#5286]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-14/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][92] -> [FAIL][93] ([i915#5138]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#5286]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-5/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#5286]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4538] / [i915#5190]) +6 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html - shard-rkl: NOTRUN -> [SKIP][97] ([i915#3638]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][98] ([i915#3638]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-19/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][99] +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4538]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#5190] / [i915#9197]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#5190]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#6095]) +117 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-14/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#10307] / [i915#6095]) +172 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#12313]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#12313]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6095]) +24 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#6095]) +19 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#12313]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-18/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#6095]) +79 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#10307] / [i915#10434] / [i915#6095]) +7 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#3742]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-17/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#3742]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-5/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#11616] / [i915#7213]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#4087]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#7828]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-8/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#7828]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#7828]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-4/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#7828]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html - shard-dg1: NOTRUN -> [SKIP][120] ([i915#7828]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-17/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3555]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-4/igt@kms_color@deep-color.html - shard-tglu: NOTRUN -> [SKIP][122] ([i915#3555] / [i915#9979]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-5/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#3116] / [i915#3299]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-8/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3299]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#3299]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#3555]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-15/igt@kms_cursor_crc@cursor-random-max-size.html - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#3555] / [i915#8814]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#11453]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#11453]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-8/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-rkl: NOTRUN -> [SKIP][130] ([i915#11453]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg1: NOTRUN -> [SKIP][131] ([i915#11453]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-15/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#11453]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][133] +30 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#4103]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#4103] / [i915#4213]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-dg1: NOTRUN -> [SKIP][136] ([i915#4103] / [i915#4213]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#4213]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#9833]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-rkl: NOTRUN -> [SKIP][139] ([i915#9723]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][140] ([i915#9723]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#3804]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3555]) +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#8812]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][144] ([i915#8812]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#9197]) +8 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#3555] / [i915#3840]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-18/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#3840] / [i915#9053]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][148] ([i915#3840] / [i915#9053]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3955]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-5/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#2065] / [i915#4854]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-9/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#658]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-5/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#3637] / [i915#3966]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-8/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][153] +6 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-1/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#9934]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-tglu: NOTRUN -> [SKIP][155] ([i915#3637]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3637]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-snb: [PASS][157] -> [FAIL][158] ([i915#2122]) +2 other tests fail [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-snb2/igt@kms_flip@flip-vs-blocking-wf-vblank.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-snb1/igt@kms_flip@flip-vs-blocking-wf-vblank.html - shard-mtlp: [PASS][159] -> [FAIL][160] ([i915#11989] / [i915#2122]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-mtlp-7/igt@kms_flip@flip-vs-blocking-wf-vblank.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-8/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-mtlp: [PASS][161] -> [FAIL][162] ([i915#2122]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-mtlp-7/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-8/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1: - shard-mtlp: [PASS][163] -> [FAIL][164] ([i915#11989]) +1 other test fail [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-mtlp-7/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-8/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html * igt@kms_flip@wf_vblank-ts-check: - shard-rkl: [PASS][165] -> [FAIL][166] ([i915#11989] / [i915#2122]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-rkl-7/igt@kms_flip@wf_vblank-ts-check.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][167] ([i915#2122]) +2 other tests fail [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-10/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][168] ([i915#11961]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#2672] / [i915#3555]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#2672] / [i915#3555]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#2672]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][172] ([i915#2587] / [i915#2672]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][173] ([i915#2587] / [i915#2672]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#2672]) +4 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#2672] / [i915#3555]) +4 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg2: [PASS][176] -> [SKIP][177] ([i915#3555]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#2672] / [i915#3555]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#5274]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [FAIL][180] ([i915#6880]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: [PASS][181] -> [SKIP][182] ([i915#5354]) +10 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: [PASS][183] -> [FAIL][184] ([i915#6880]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#8708]) +6 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#5354]) +17 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html - shard-snb: [PASS][187] -> [SKIP][188] +4 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#1825]) +4 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#1825]) +23 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][191] ([i915#8708]) +8 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#3458]) +5 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3458]) +5 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#10055]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#10055]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][196] +48 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#3023]) +19 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#8708]) +4 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8228]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-6/igt@kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8228]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-5/igt@kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#8228]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-9/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: [PASS][202] -> [SKIP][203] ([i915#10656]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-10/igt@kms_joiner@basic-force-big-joiner.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-4/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#10656]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][205] ([i915#6301]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-2/igt@kms_panel_fitting@legacy.html - shard-dg2: NOTRUN -> [SKIP][206] ([i915#6301]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-4/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][207] ([i915#6301]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-1/igt@kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][208] ([i915#6301]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-14/igt@kms_panel_fitting@legacy.html * igt@kms_plane@plane-position-hole-dpms: - shard-dg2: [PASS][209] -> [SKIP][210] ([i915#8825]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-7/igt@kms_plane@plane-position-hole-dpms.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#9809]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - shard-dg2: NOTRUN -> [SKIP][212] ([i915#5354] / [i915#9423]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][213] ([i915#8292]) +1 other test fail [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][214] ([i915#8292]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@invalid-parameters: - shard-dg2: [PASS][215] -> [SKIP][216] ([i915#8152] / [i915#9423]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-5/igt@kms_plane_scaling@invalid-parameters.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_plane_scaling@invalid-parameters.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation: - shard-dg2: [PASS][217] -> [SKIP][218] ([i915#12247] / [i915#8152] / [i915#9423]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d: - shard-dg2: [PASS][219] -> [SKIP][220] ([i915#12247] / [i915#8152]) +3 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#12247]) +5 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#12247]) +4 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-12/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#12247] / [i915#9423]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#12247]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#12247] / [i915#6953]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-5.html - shard-dg2: [PASS][226] -> [SKIP][227] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-5.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#12247]) +13 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#12247]) +4 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a: - shard-dg2: [PASS][230] -> [SKIP][231] ([i915#12247]) +11 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20: - shard-dg2: [PASS][232] -> [SKIP][233] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-dg2: [PASS][234] -> [SKIP][235] ([i915#3555] / [i915#8152] / [i915#9423]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-5/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a: - shard-snb: NOTRUN -> [SKIP][236] +56 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-snb7/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#9812]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-2/igt@kms_pm_backlight@fade.html - shard-rkl: NOTRUN -> [SKIP][238] ([i915#5354]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-5/igt@kms_pm_backlight@fade.html - shard-dg1: NOTRUN -> [SKIP][239] ([i915#5354]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-19/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#3361]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][241] -> [SKIP][242] ([i915#9519]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-3/igt@kms_pm_rpm@dpms-lpsp.html - shard-rkl: [PASS][243] -> [SKIP][244] ([i915#9519]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#6524] / [i915#6805]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html - shard-rkl: NOTRUN -> [SKIP][246] ([i915#6524]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-4/igt@kms_prime@basic-crc-hybrid.html - shard-dg1: NOTRUN -> [SKIP][247] ([i915#6524]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-18/igt@kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][248] ([i915#6524]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-8/igt@kms_prime@basic-crc-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#6524]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][250] ([i915#11520]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-snb5/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#9808]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#11520]) +4 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#11520]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-10/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html - shard-rkl: NOTRUN -> [SKIP][254] ([i915#11520]) +7 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#11520]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-17/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#9683]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-13/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr-cursor-plane-move@edp-1: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#9688]) +8 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-1/igt@kms_psr@fbc-psr-cursor-plane-move@edp-1.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#9732]) +8 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-6/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#1072] / [i915#9732]) +6 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-16/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#1072] / [i915#9732]) +11 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-1/igt@kms_psr@psr-cursor-render.html - shard-rkl: NOTRUN -> [SKIP][261] ([i915#1072] / [i915#9732]) +16 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-1/igt@kms_psr@psr-cursor-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#9685]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][263] ([i915#9685]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#5289]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#5289]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#5289]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#11131] / [i915#5190]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg1: NOTRUN -> [SKIP][268] ([i915#5289]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#11131]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#3555]) +3 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_selftest@drm_framebuffer: - shard-dg1: NOTRUN -> [ABORT][271] ([i915#12231]) +1 other test abort [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-19/igt@kms_selftest@drm_framebuffer.html - shard-mtlp: NOTRUN -> [ABORT][272] ([i915#12231]) +1 other test abort [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-5/igt@kms_selftest@drm_framebuffer.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][273] ([i915#12231]) +1 other test abort [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-3/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8809]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-7/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][275] ([IGT#2] / [i915#6493]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-16/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@universal-plane-sanity: - shard-dg2: [PASS][276] -> [SKIP][277] ([i915#9197]) +27 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-6/igt@kms_universal_plane@universal-plane-sanity.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_universal_plane@universal-plane-sanity.html * igt@kms_vrr@flip-basic-fastset: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#9906]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-14/igt@kms_vrr@flip-basic-fastset.html - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#8808] / [i915#9906]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-4/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#11920]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-8/igt@kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][281] ([i915#11920]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-1/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#2437] / [i915#9412]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][283] ([i915#2437] / [i915#9412]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#2437]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-8/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@blocking@0-rcs0: - shard-dg1: [PASS][285] -> [FAIL][286] ([i915#10538]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg1-12/igt@perf@blocking@0-rcs0.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-19/igt@perf@blocking@0-rcs0.html * igt@perf_pmu@busy-idle: - shard-mtlp: [PASS][287] -> [FAIL][288] ([i915#4349]) +4 other tests fail [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-mtlp-6/igt@perf_pmu@busy-idle.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-6/igt@perf_pmu@busy-idle.html * igt@perf_pmu@busy-idle@vcs0: - shard-dg1: [PASS][289] -> [FAIL][290] ([i915#4349]) +2 other tests fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg1-16/igt@perf_pmu@busy-idle@vcs0.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-16/igt@perf_pmu@busy-idle@vcs0.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#8516]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-10/igt@perf_pmu@rc6-all-gts.html - shard-rkl: NOTRUN -> [SKIP][292] ([i915#8516]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html - shard-tglu: NOTRUN -> [SKIP][293] ([i915#8516]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-8/igt@perf_pmu@rc6-all-gts.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][294] ([i915#9351]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-4/igt@prime_mmap@test_aperture_limit.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][295] ([i915#9351]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-4/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#3708]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-15/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#3291] / [i915#3708]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-5/igt@prime_vgem@basic-fence-read.html * igt@tools_test@sysfs_l3_parity: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#4818]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-4/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@fbdev@nullptr: - shard-dg2: [SKIP][299] ([i915#2582]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@fbdev@nullptr.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-8/igt@fbdev@nullptr.html * igt@gem_ctx_engines@invalid-engines: - shard-tglu: [FAIL][301] ([i915#12027]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-tglu-6/igt@gem_ctx_engines@invalid-engines.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-6/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@hostile: - shard-tglu: [FAIL][303] ([i915#11980]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-tglu-7/igt@gem_ctx_persistence@hostile.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-5/igt@gem_ctx_persistence@hostile.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][305] ([i915#5784]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg1-18/igt@gem_eio@unwedge-stress.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-14/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][307] ([i915#2846]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-rkl-3/igt@gem_exec_fair@basic-deadline.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html * igt@i915_selftest@live: - shard-snb: [ABORT][309] -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-snb1/igt@i915_selftest@live.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-snb5/igt@i915_selftest@live.html * igt@i915_selftest@live@sanitycheck: - shard-snb: [ABORT][311] ([i915#11703]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-snb1/igt@i915_selftest@live@sanitycheck.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-snb5/igt@i915_selftest@live@sanitycheck.html * igt@kms_busy@basic: - shard-dg2: [SKIP][313] ([i915#9197]) -> [PASS][314] +40 other tests pass [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_busy@basic.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-7/igt@kms_busy@basic.html * igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-d-edp-1: - shard-mtlp: [FAIL][315] -> [PASS][316] +4 other tests pass [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-d-edp-1.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-d-edp-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-dg1: [DMESG-WARN][317] ([i915#4423]) -> [PASS][318] +2 other tests pass [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg1-13/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-14/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_dp_aux_dev: - shard-dg2: [SKIP][319] ([i915#1257]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-6/igt@kms_dp_aux_dev.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-10/igt@kms_dp_aux_dev.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-snb: [FAIL][321] ([i915#2122]) -> [PASS][322] +9 other tests pass [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2: [INCOMPLETE][323] ([i915#4839] / [i915#6113]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-8/igt@kms_flip@flip-vs-suspend-interruptible.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-3/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-dg1: [INCOMPLETE][325] ([i915#4839] / [i915#6113]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg1-17/igt@kms_flip@flip-vs-suspend-interruptible.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-16/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-mtlp: [INCOMPLETE][327] ([i915#6113]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-mtlp-5/igt@kms_flip@flip-vs-suspend-interruptible.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-3/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4: - shard-dg1: [INCOMPLETE][329] ([i915#6113]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg1-17/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-16/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4.html * igt@kms_flip@flip-vs-suspend-interruptible@d-edp1: - shard-mtlp: [INCOMPLETE][331] ([i915#10056] / [i915#6113]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-mtlp-5/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-mtlp-3/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [FAIL][333] ([i915#2122]) -> [PASS][334] +3 other tests pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a4: - shard-dg1: [FAIL][335] ([i915#2122]) -> [PASS][336] +3 other tests pass [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg1-14/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a4.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-19/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a4.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-dg2: [SKIP][337] ([i915#3555]) -> [PASS][338] +5 other tests pass [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][339] ([i915#5354]) -> [PASS][340] +15 other tests pass [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: [SKIP][341] ([i915#3555] / [i915#8228]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-1/igt@kms_hdr@bpc-switch-suspend.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-10/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_plane_alpha_blend@constant-alpha-min: - shard-dg2: [SKIP][343] ([i915#7294]) -> [PASS][344] +1 other test pass [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-min.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_plane_alpha_blend@constant-alpha-min.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [FAIL][345] ([i915#8292]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation: - shard-dg2: [SKIP][347] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d: - shard-dg2: [SKIP][349] ([i915#12247] / [i915#8152]) -> [PASS][350] +2 other tests pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-dg2: [SKIP][351] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][352] +1 other test pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c: - shard-dg2: [SKIP][353] ([i915#12247]) -> [PASS][354] +8 other tests pass [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2: [SKIP][355] ([i915#1849]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-6/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [SKIP][357] ([i915#9519]) -> [PASS][358] +1 other test pass [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2: [SKIP][359] ([i915#3547]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_pm_rpm@system-suspend-modeset.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-10/igt@kms_pm_rpm@system-suspend-modeset.html * igt@prime_mmap_kms@buffer-sharing: - shard-dg2: [SKIP][361] -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@prime_mmap_kms@buffer-sharing.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-10/igt@prime_mmap_kms@buffer-sharing.html #### Warnings #### * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [FAIL][363] ([i915#2876]) -> [FAIL][364] ([i915#2842]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-tglu-8/igt@gem_exec_fair@basic-pace@rcs0.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-tglu-5/igt@gem_exec_fair@basic-pace@rcs0.html * igt@i915_selftest@mock: - shard-dg1: [DMESG-WARN][365] ([i915#9311]) -> [DMESG-WARN][366] ([i915#1982] / [i915#9311]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg1-16/igt@i915_selftest@mock.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-19/igt@i915_selftest@mock.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: [SKIP][367] ([i915#9197]) -> [SKIP][368] ([i915#1769] / [i915#3555]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-dg2: [SKIP][369] -> [SKIP][370] ([i915#9197]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-7/igt@kms_big_fb@linear-8bpp-rotate-90.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: [SKIP][371] ([i915#9197]) -> [SKIP][372] +6 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: [SKIP][373] ([i915#5190] / [i915#9197]) -> [SKIP][374] ([i915#4538] / [i915#5190]) +7 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-4/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2: [SKIP][375] ([i915#4538] / [i915#5190]) -> [SKIP][376] ([i915#5190] / [i915#9197]) +4 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-dg2: [SKIP][377] ([i915#9197]) -> [SKIP][378] ([i915#10307] / [i915#6095]) +7 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-dg2: [SKIP][379] ([i915#10307] / [i915#6095]) -> [SKIP][380] ([i915#9197]) +2 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-8/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: [SKIP][381] ([i915#9197]) -> [SKIP][382] ([i915#12313]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-dg1: [SKIP][383] ([i915#4423] / [i915#6095]) -> [SKIP][384] ([i915#6095]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg1-17/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-16/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2: [SKIP][385] ([i915#12313]) -> [SKIP][386] ([i915#9197]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_content_protection@legacy: - shard-dg2: [SKIP][387] ([i915#7118] / [i915#9424]) -> [SKIP][388] ([i915#9197]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-6/igt@kms_content_protection@legacy.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-1: - shard-dg2: [SKIP][389] ([i915#9424]) -> [SKIP][390] ([i915#9197]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-5/igt@kms_content_protection@lic-type-1.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][391] ([i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][392] ([i915#7118] / [i915#9424]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-10/igt@kms_content_protection@type1.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-8/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg2: [FAIL][393] ([i915#1339] / [i915#7173]) -> [SKIP][394] ([i915#7118] / [i915#9424]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-10/igt@kms_content_protection@uevent.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: [SKIP][395] ([i915#9197]) -> [SKIP][396] ([i915#11453]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x512.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: [SKIP][397] ([i915#9197]) -> [SKIP][398] ([i915#3555]) +3 other tests skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: [SKIP][399] ([i915#11453]) -> [SKIP][400] ([i915#9197]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: [SKIP][401] ([i915#4103] / [i915#4213]) -> [SKIP][402] ([i915#9197]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-dg2: [SKIP][403] ([i915#9197]) -> [SKIP][404] ([i915#5354]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: [SKIP][405] ([i915#5354]) -> [SKIP][406] ([i915#9197]) +1 other test skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: [SKIP][407] ([i915#9197]) -> [SKIP][408] ([i915#4103] / [i915#4213]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: [SKIP][409] ([i915#9197]) -> [SKIP][410] ([i915#3555] / [i915#3840]) +1 other test skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: [SKIP][411] ([i915#3840] / [i915#9053]) -> [SKIP][412] ([i915#9197]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg1: [SKIP][413] ([i915#2672] / [i915#3555] / [i915#4423]) -> [SKIP][414] ([i915#2672] / [i915#3555]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: [SKIP][415] ([i915#2587] / [i915#2672] / [i915#4423]) -> [SKIP][416] ([i915#2587] / [i915#2672]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2: [SKIP][417] ([i915#2672] / [i915#3555]) -> [SKIP][418] ([i915#3555]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: [SKIP][419] ([i915#3555] / [i915#5190]) -> [SKIP][420] ([i915#2672] / [i915#3555] / [i915#5190]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: [SKIP][421] ([i915#5354]) -> [SKIP][422] ([i915#8708]) +16 other tests skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-dg2: [SKIP][423] ([i915#5354]) -> [FAIL][424] ([i915#6880]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][425] ([i915#5354]) -> [SKIP][426] ([i915#3458]) +10 other tests skip [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: [SKIP][427] ([i915#3458]) -> [SKIP][428] ([i915#5354]) +11 other tests skip [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-dg2: [SKIP][429] ([i915#3458]) -> [SKIP][430] ([i915#10433] / [i915#3458]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: [SKIP][431] ([i915#8708]) -> [SKIP][432] ([i915#5354]) +5 other tests skip [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [SKIP][433] ([i915#10433] / [i915#3458]) -> [SKIP][434] ([i915#3458]) +2 other tests skip [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_hdr@bpc-switch: - shard-dg2: [SKIP][435] ([i915#3555] / [i915#8228]) -> [SKIP][436] ([i915#9197]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-7/igt@kms_hdr@bpc-switch.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-swap: - shard-dg2: [SKIP][437] ([i915#9197]) -> [SKIP][438] ([i915#3555] / [i915#8228]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_hdr@static-swap.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-8/igt@kms_hdr@static-swap.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: [SKIP][439] ([i915#9197]) -> [SKIP][440] ([i915#8821]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_plane_lowres@tiling-y.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: [SKIP][441] ([i915#12247] / [i915#8152] / [i915#9423]) -> [SKIP][442] ([i915#12247] / [i915#9423]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: - shard-dg2: [SKIP][443] ([i915#12247] / [i915#8152]) -> [SKIP][444] ([i915#12247]) +2 other tests skip [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: [SKIP][445] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [SKIP][446] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2: [SKIP][447] ([i915#12247] / [i915#6953] / [i915#9423]) -> [SKIP][448] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-dg2: [SKIP][449] ([i915#12247]) -> [SKIP][450] ([i915#12247] / [i915#8152]) [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: [SKIP][451] ([i915#9197]) -> [SKIP][452] ([i915#11131]) [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-270.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: [SKIP][453] ([i915#5190] / [i915#9197]) -> [SKIP][454] ([i915#11131] / [i915#5190]) [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_vrr@flip-dpms: - shard-dg2: [SKIP][455] ([i915#3555]) -> [INCOMPLETE][456] ([i915#2295]) [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-4/igt@kms_vrr@flip-dpms.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-3/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@max-min: - shard-dg2: [SKIP][457] ([i915#9906]) -> [SKIP][458] ([i915#9197]) [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15481/shard-dg2-3/igt@kms_vrr@max-min.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/shard-dg2-2/igt@kms_v == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11863/index.html [-- Attachment #2: Type: text/html, Size: 108143 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-10-08 2:40 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-03 11:57 [PATCH i-g-t v2] tests/intel/xe_oa: Check gtidle before rc6 disable test Soham Purkait 2024-10-03 12:25 ` Riana Tauro 2024-10-03 16:57 ` Dixit, Ashutosh 2024-10-03 15:20 ` ✓ CI.xeBAT: success for " Patchwork 2024-10-03 15:22 ` ✗ CI.xeBAT: failure " Patchwork 2024-10-03 15:26 ` ✓ Fi.CI.BAT: success " Patchwork 2024-10-03 16:07 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-08 2:40 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox