* [PATCH i-g-t] tests/kms_addfb_basic: Split tests into subtest groups
@ 2025-03-12 10:30 Karthik B S
2025-03-12 20:43 ` Kamil Konieczny
` (4 more replies)
0 siblings, 5 replies; 11+ messages in thread
From: Karthik B S @ 2025-03-12 10:30 UTC (permalink / raw)
To: igt-dev; +Cc: pranay.samala, Karthik B S
Multiple subtest groups exist in kms_addfb_basic with individual
igt_fixutre calls. Split these using igt_subtest_group so that any
failure in the fixture of one of the individual subtest groups don't
affect the results of subtests in other groups.
Signed-off-by: Karthik B S <karthik.b.s@intel.com>
---
tests/kms_addfb_basic.c | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c
index e5ff9ea32..268e4e0e4 100644
--- a/tests/kms_addfb_basic.c
+++ b/tests/kms_addfb_basic.c
@@ -989,15 +989,20 @@ igt_main
igt_require(has_addfb2_iface(fd));
}
- invalid_tests(fd);
+ igt_subtest_group
+ invalid_tests(fd);
- pitch_tests(fd);
+ igt_subtest_group
+ pitch_tests(fd);
- prop_tests(fd);
+ igt_subtest_group
+ prop_tests(fd);
- master_tests(fd);
+ igt_subtest_group
+ master_tests(fd);
- tiling_tests(fd);
+ igt_subtest_group
+ tiling_tests(fd);
igt_subtest_group {
igt_fixture
--
2.43.0
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [PATCH i-g-t] tests/kms_addfb_basic: Split tests into subtest groups 2025-03-12 10:30 [PATCH i-g-t] tests/kms_addfb_basic: Split tests into subtest groups Karthik B S @ 2025-03-12 20:43 ` Kamil Konieczny 2025-03-14 9:43 ` Karthik B S 2025-03-13 2:45 ` ✓ Xe.CI.BAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 11+ messages in thread From: Kamil Konieczny @ 2025-03-12 20:43 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev, pranay.samala Hi Karthik, On 2025-03-12 at 16:00:08 +0530, Karthik B S wrote: > Multiple subtest groups exist in kms_addfb_basic with individual > igt_fixutre calls. Split these using igt_subtest_group so that any > failure in the fixture of one of the individual subtest groups don't > affect the results of subtests in other groups. > > Signed-off-by: Karthik B S <karthik.b.s@intel.com> > --- > tests/kms_addfb_basic.c | 15 ++++++++++----- > 1 file changed, 10 insertions(+), 5 deletions(-) > > diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c > index e5ff9ea32..268e4e0e4 100644 > --- a/tests/kms_addfb_basic.c > +++ b/tests/kms_addfb_basic.c > @@ -989,15 +989,20 @@ igt_main > igt_require(has_addfb2_iface(fd)); > } > > - invalid_tests(fd); > + igt_subtest_group > + invalid_tests(fd); > > - pitch_tests(fd); > + igt_subtest_group > + pitch_tests(fd); > > - prop_tests(fd); > + igt_subtest_group > + prop_tests(fd); > > - master_tests(fd); > + igt_subtest_group > + master_tests(fd); > > - tiling_tests(fd); > + igt_subtest_group > + tiling_tests(fd); I looked into those tests and imho this needs a major refactor, for example there should not be any igt_assert() in a fixture. Generally igt tests works ok for one fixture in begin, last one at igt_main() end. When used in-between it becomes more complicated to handle cleanup. Regards, Kamil > > igt_subtest_group { > igt_fixture > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/kms_addfb_basic: Split tests into subtest groups 2025-03-12 20:43 ` Kamil Konieczny @ 2025-03-14 9:43 ` Karthik B S 2025-03-20 13:30 ` Kamil Konieczny 0 siblings, 1 reply; 11+ messages in thread From: Karthik B S @ 2025-03-14 9:43 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, pranay.samala Hi Kamil, On 3/13/2025 2:13 AM, Kamil Konieczny wrote: > Hi Karthik, > On 2025-03-12 at 16:00:08 +0530, Karthik B S wrote: >> Multiple subtest groups exist in kms_addfb_basic with individual >> igt_fixutre calls. Split these using igt_subtest_group so that any >> failure in the fixture of one of the individual subtest groups don't >> affect the results of subtests in other groups. >> >> Signed-off-by: Karthik B S <karthik.b.s@intel.com> >> --- >> tests/kms_addfb_basic.c | 15 ++++++++++----- >> 1 file changed, 10 insertions(+), 5 deletions(-) >> >> diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c >> index e5ff9ea32..268e4e0e4 100644 >> --- a/tests/kms_addfb_basic.c >> +++ b/tests/kms_addfb_basic.c >> @@ -989,15 +989,20 @@ igt_main >> igt_require(has_addfb2_iface(fd)); >> } >> >> - invalid_tests(fd); >> + igt_subtest_group >> + invalid_tests(fd); >> >> - pitch_tests(fd); >> + igt_subtest_group >> + pitch_tests(fd); >> >> - prop_tests(fd); >> + igt_subtest_group >> + prop_tests(fd); >> >> - master_tests(fd); >> + igt_subtest_group >> + master_tests(fd); >> >> - tiling_tests(fd); >> + igt_subtest_group >> + tiling_tests(fd); > I looked into those tests and imho this needs a major refactor, > for example there should not be any igt_assert() in a fixture. > Generally igt tests works ok for one fixture in begin, last one > at igt_main() end. When used in-between it becomes more > complicated to handle cleanup. Thank you for the review. I tried out by inducing an error using an igt_assert(0) within the igt_fixture of a subtest group and verified that the this change handles the issue by not failing the subtests in other subtest groups. As agreed offline, will use this as a quick fix to handle failures in the current design and for the long run will check if there is a way these fb tests(kms_addfb_basic, kms_getfb) can be redesigned to be more robust. Thanks, Karthik.B.S > > Regards, > Kamil > >> >> igt_subtest_group { >> igt_fixture >> -- >> 2.43.0 >> ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/kms_addfb_basic: Split tests into subtest groups 2025-03-14 9:43 ` Karthik B S @ 2025-03-20 13:30 ` Kamil Konieczny 2025-03-20 14:09 ` Karthik B S 0 siblings, 1 reply; 11+ messages in thread From: Kamil Konieczny @ 2025-03-20 13:30 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev, pranay.samala Hi Karthik, On 2025-03-14 at 15:13:57 +0530, Karthik B S wrote: > Hi Kamil, > > On 3/13/2025 2:13 AM, Kamil Konieczny wrote: > > Hi Karthik, > > On 2025-03-12 at 16:00:08 +0530, Karthik B S wrote: > > > Multiple subtest groups exist in kms_addfb_basic with individual > > > igt_fixutre calls. Split these using igt_subtest_group so that any > > > failure in the fixture of one of the individual subtest groups don't > > > affect the results of subtests in other groups. > > > > > > Signed-off-by: Karthik B S <karthik.b.s@intel.com> > > > --- > > > tests/kms_addfb_basic.c | 15 ++++++++++----- > > > 1 file changed, 10 insertions(+), 5 deletions(-) > > > > > > diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c > > > index e5ff9ea32..268e4e0e4 100644 > > > --- a/tests/kms_addfb_basic.c > > > +++ b/tests/kms_addfb_basic.c > > > @@ -989,15 +989,20 @@ igt_main > > > igt_require(has_addfb2_iface(fd)); > > > } > > > - invalid_tests(fd); > > > + igt_subtest_group > > > + invalid_tests(fd); > > > - pitch_tests(fd); > > > + igt_subtest_group > > > + pitch_tests(fd); > > > - prop_tests(fd); > > > + igt_subtest_group > > > + prop_tests(fd); > > > - master_tests(fd); > > > + igt_subtest_group > > > + master_tests(fd); > > > - tiling_tests(fd); > > > + igt_subtest_group > > > + tiling_tests(fd); > > I looked into those tests and imho this needs a major refactor, > > for example there should not be any igt_assert() in a fixture. > > Generally igt tests works ok for one fixture in begin, last one > > at igt_main() end. When used in-between it becomes more > > complicated to handle cleanup. > > Thank you for the review. > > I tried out by inducing an error using an igt_assert(0) within the > igt_fixture of a subtest group and verified that the this change handles the > issue by not failing the subtests in other subtest groups. As agreed > offline, will use this as a quick fix to handle failures in the current > design and for the long run will check if there is a way these fb > tests(kms_addfb_basic, kms_getfb) can be redesigned to be more robust. > > Thanks, > Karthik.B.S Yes, after a second reading this could be a first step followed by refactoring later, so as this could improve testing a little this is Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > > > Regards, > > Kamil > > > > > igt_subtest_group { > > > igt_fixture > > > -- > > > 2.43.0 > > > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/kms_addfb_basic: Split tests into subtest groups 2025-03-20 13:30 ` Kamil Konieczny @ 2025-03-20 14:09 ` Karthik B S 2025-03-25 7:38 ` Sharma, Swati2 0 siblings, 1 reply; 11+ messages in thread From: Karthik B S @ 2025-03-20 14:09 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, pranay.samala Hi Kamil, On 3/20/2025 7:00 PM, Kamil Konieczny wrote: > Hi Karthik, > On 2025-03-14 at 15:13:57 +0530, Karthik B S wrote: >> Hi Kamil, >> >> On 3/13/2025 2:13 AM, Kamil Konieczny wrote: >>> Hi Karthik, >>> On 2025-03-12 at 16:00:08 +0530, Karthik B S wrote: >>>> Multiple subtest groups exist in kms_addfb_basic with individual >>>> igt_fixutre calls. Split these using igt_subtest_group so that any >>>> failure in the fixture of one of the individual subtest groups don't >>>> affect the results of subtests in other groups. >>>> >>>> Signed-off-by: Karthik B S <karthik.b.s@intel.com> >>>> --- >>>> tests/kms_addfb_basic.c | 15 ++++++++++----- >>>> 1 file changed, 10 insertions(+), 5 deletions(-) >>>> >>>> diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c >>>> index e5ff9ea32..268e4e0e4 100644 >>>> --- a/tests/kms_addfb_basic.c >>>> +++ b/tests/kms_addfb_basic.c >>>> @@ -989,15 +989,20 @@ igt_main >>>> igt_require(has_addfb2_iface(fd)); >>>> } >>>> - invalid_tests(fd); >>>> + igt_subtest_group >>>> + invalid_tests(fd); >>>> - pitch_tests(fd); >>>> + igt_subtest_group >>>> + pitch_tests(fd); >>>> - prop_tests(fd); >>>> + igt_subtest_group >>>> + prop_tests(fd); >>>> - master_tests(fd); >>>> + igt_subtest_group >>>> + master_tests(fd); >>>> - tiling_tests(fd); >>>> + igt_subtest_group >>>> + tiling_tests(fd); >>> I looked into those tests and imho this needs a major refactor, >>> for example there should not be any igt_assert() in a fixture. >>> Generally igt tests works ok for one fixture in begin, last one >>> at igt_main() end. When used in-between it becomes more >>> complicated to handle cleanup. >> Thank you for the review. >> >> I tried out by inducing an error using an igt_assert(0) within the >> igt_fixture of a subtest group and verified that the this change handles the >> issue by not failing the subtests in other subtest groups. As agreed >> offline, will use this as a quick fix to handle failures in the current >> design and for the long run will check if there is a way these fb >> tests(kms_addfb_basic, kms_getfb) can be redesigned to be more robust. >> >> Thanks, >> Karthik.B.S > Yes, after a second reading this could be a first step > followed by refactoring later, so as this could improve > testing a little this is > > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Thank you for the rb. Will merge this and then see how overall test can be redesigned for the long run. Thanks, Karthik.B.S > >>> Regards, >>> Kamil >>> >>>> igt_subtest_group { >>>> igt_fixture >>>> -- >>>> 2.43.0 >>>> ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/kms_addfb_basic: Split tests into subtest groups 2025-03-20 14:09 ` Karthik B S @ 2025-03-25 7:38 ` Sharma, Swati2 0 siblings, 0 replies; 11+ messages in thread From: Sharma, Swati2 @ 2025-03-25 7:38 UTC (permalink / raw) To: Karthik B S, Kamil Konieczny, igt-dev, pranay.samala Hi Karthik, Patch LGTM Reviewed-by: Swati Sharma <swati2.sharma@intel.com> On 20-03-2025 07:39 pm, Karthik B S wrote: > Hi Kamil, > > On 3/20/2025 7:00 PM, Kamil Konieczny wrote: >> Hi Karthik, >> On 2025-03-14 at 15:13:57 +0530, Karthik B S wrote: >>> Hi Kamil, >>> >>> On 3/13/2025 2:13 AM, Kamil Konieczny wrote: >>>> Hi Karthik, >>>> On 2025-03-12 at 16:00:08 +0530, Karthik B S wrote: >>>>> Multiple subtest groups exist in kms_addfb_basic with individual >>>>> igt_fixutre calls. Split these using igt_subtest_group so that any >>>>> failure in the fixture of one of the individual subtest groups don't >>>>> affect the results of subtests in other groups. >>>>> >>>>> Signed-off-by: Karthik B S <karthik.b.s@intel.com> >>>>> --- >>>>> tests/kms_addfb_basic.c | 15 ++++++++++----- >>>>> 1 file changed, 10 insertions(+), 5 deletions(-) >>>>> >>>>> diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c >>>>> index e5ff9ea32..268e4e0e4 100644 >>>>> --- a/tests/kms_addfb_basic.c >>>>> +++ b/tests/kms_addfb_basic.c >>>>> @@ -989,15 +989,20 @@ igt_main >>>>> igt_require(has_addfb2_iface(fd)); >>>>> } >>>>> - invalid_tests(fd); >>>>> + igt_subtest_group >>>>> + invalid_tests(fd); >>>>> - pitch_tests(fd); >>>>> + igt_subtest_group >>>>> + pitch_tests(fd); >>>>> - prop_tests(fd); >>>>> + igt_subtest_group >>>>> + prop_tests(fd); >>>>> - master_tests(fd); >>>>> + igt_subtest_group >>>>> + master_tests(fd); >>>>> - tiling_tests(fd); >>>>> + igt_subtest_group >>>>> + tiling_tests(fd); >>>> I looked into those tests and imho this needs a major refactor, >>>> for example there should not be any igt_assert() in a fixture. >>>> Generally igt tests works ok for one fixture in begin, last one >>>> at igt_main() end. When used in-between it becomes more >>>> complicated to handle cleanup. >>> Thank you for the review. >>> >>> I tried out by inducing an error using an igt_assert(0) within the >>> igt_fixture of a subtest group and verified that the this change >>> handles the >>> issue by not failing the subtests in other subtest groups. As agreed >>> offline, will use this as a quick fix to handle failures in the current >>> design and for the long run will check if there is a way these fb >>> tests(kms_addfb_basic, kms_getfb) can be redesigned to be more robust. >>> >>> Thanks, >>> Karthik.B.S >> Yes, after a second reading this could be a first step >> followed by refactoring later, so as this could improve >> testing a little this is >> >> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > Thank you for the rb. Will merge this and then see how overall test > can be redesigned for the long run. > > Thanks, > Karthik.B.S >> >>>> Regards, >>>> Kamil >>>> >>>>> igt_subtest_group { >>>>> igt_fixture >>>>> -- >>>>> 2.43.0 >>>>> ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_addfb_basic: Split tests into subtest groups 2025-03-12 10:30 [PATCH i-g-t] tests/kms_addfb_basic: Split tests into subtest groups Karthik B S 2025-03-12 20:43 ` Kamil Konieczny @ 2025-03-13 2:45 ` Patchwork 2025-03-13 3:01 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-03-13 2:45 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8372 bytes --] == Series Details == Series: tests/kms_addfb_basic: Split tests into subtest groups URL : https://patchwork.freedesktop.org/series/146208/ State : success == Summary == CI Bug Log - changes from XEIGT_8273_BAT -> XEIGTPW_12759_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12759_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@nullptr: - bat-dg2-oem2: [PASS][1] -> [SKIP][2] ([Intel XE#2134]) +4 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/bat-dg2-oem2/igt@fbdev@nullptr.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/bat-dg2-oem2/igt@fbdev@nullptr.html * igt@kms_addfb_basic@bad-pitch-128: - bat-dg2-oem2: [PASS][3] -> [SKIP][4] ([Intel XE#4208] / [i915#2575]) +51 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/bat-dg2-oem2/igt@kms_addfb_basic@bad-pitch-128.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/bat-dg2-oem2/igt@kms_addfb_basic@bad-pitch-128.html * igt@kms_frontbuffer_tracking@basic: - bat-dg2-oem2: [PASS][5] -> [SKIP][6] ([Intel XE#2351] / [Intel XE#4208]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-dg2-oem2: [PASS][7] -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_module_load@load: - bat-dg2-oem2: [PASS][9] -> [FAIL][10] ([Intel XE#4490]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/bat-dg2-oem2/igt@xe_module_load@load.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/bat-dg2-oem2/igt@xe_module_load@load.html * igt@xe_prime_self_import@basic-with_fd_dup: - bat-dg2-oem2: [PASS][11] -> [SKIP][12] ([Intel XE#4208]) +152 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/bat-dg2-oem2/igt@xe_prime_self_import@basic-with_fd_dup.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/bat-dg2-oem2/igt@xe_prime_self_import@basic-with_fd_dup.html #### Warnings #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-oem2: [SKIP][13] ([Intel XE#623]) -> [SKIP][14] ([Intel XE#4208] / [i915#2575]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_dsc@dsc-basic: - bat-dg2-oem2: [SKIP][15] ([Intel XE#455]) -> [SKIP][16] ([Intel XE#2351] / [Intel XE#4208]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html * igt@kms_psr@psr-cursor-plane-move: - bat-dg2-oem2: [SKIP][17] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][18] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/bat-dg2-oem2/igt@kms_psr@psr-cursor-plane-move.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/bat-dg2-oem2/igt@kms_psr@psr-cursor-plane-move.html * igt@sriov_basic@enable-vfs-autoprobe-off: - bat-dg2-oem2: [SKIP][19] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][20] ([Intel XE#4208] / [i915#2575]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/bat-dg2-oem2/igt@sriov_basic@enable-vfs-autoprobe-off.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/bat-dg2-oem2/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr: - bat-dg2-oem2: [SKIP][21] ([Intel XE#288]) -> [SKIP][22] ([Intel XE#4208]) +32 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html * igt@xe_huc_copy@huc_copy: - bat-dg2-oem2: [SKIP][23] ([Intel XE#255]) -> [SKIP][24] ([Intel XE#4208]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html * igt@xe_pat@pat-index-xe2: - bat-dg2-oem2: [SKIP][25] ([Intel XE#977]) -> [SKIP][26] ([Intel XE#4208]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - bat-dg2-oem2: [SKIP][27] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][28] ([Intel XE#4208]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/bat-dg2-oem2/igt@xe_pat@pat-index-xehpc.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/bat-dg2-oem2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelpg: - bat-dg2-oem2: [SKIP][29] ([Intel XE#979]) -> [SKIP][30] ([Intel XE#4208]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/bat-dg2-oem2/igt@xe_pat@pat-index-xelpg.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/bat-dg2-oem2/igt@xe_pat@pat-index-xelpg.html * igt@xe_sriov_flr@flr-vf1-clear: - bat-dg2-oem2: [SKIP][31] ([Intel XE#3342]) -> [SKIP][32] ([Intel XE#4208]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/bat-dg2-oem2/igt@xe_sriov_flr@flr-vf1-clear.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/bat-dg2-oem2/igt@xe_sriov_flr@flr-vf1-clear.html [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [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#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208 [Intel XE#4490]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4490 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8273 -> IGTPW_12759 * Linux: xe-2806-e2e6ad67ea058d5b08490a2b3dab2152fcfcc24e -> xe-2807-1476c293076865d6630fe197cb211ea76b40ceb2 IGTPW_12759: 12759 IGT_8273: 5d806121f1cfb38fe7cc4d528d81feb1c11274b1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2806-e2e6ad67ea058d5b08490a2b3dab2152fcfcc24e: e2e6ad67ea058d5b08490a2b3dab2152fcfcc24e xe-2807-1476c293076865d6630fe197cb211ea76b40ceb2: 1476c293076865d6630fe197cb211ea76b40ceb2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/index.html [-- Attachment #2: Type: text/html, Size: 10537 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_addfb_basic: Split tests into subtest groups 2025-03-12 10:30 [PATCH i-g-t] tests/kms_addfb_basic: Split tests into subtest groups Karthik B S 2025-03-12 20:43 ` Kamil Konieczny 2025-03-13 2:45 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2025-03-13 3:01 ` Patchwork 2025-03-13 4:52 ` ✗ i915.CI.Full: failure " Patchwork 2025-03-13 17:49 ` ✓ Xe.CI.Full: success " Patchwork 4 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-03-13 3:01 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8390 bytes --] == Series Details == Series: tests/kms_addfb_basic: Split tests into subtest groups URL : https://patchwork.freedesktop.org/series/146208/ State : success == Summary == CI Bug Log - changes from IGT_8273 -> IGTPW_12759 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/index.html Participating hosts (43 -> 43) ------------------------------ Additional (1): bat-arlh-2 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12759 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-arlh-2: NOTRUN -> [SKIP][1] ([i915#11346] / [i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@debugfs_test@basic-hwmon.html * igt@dmabuf@all-tests@dma_fence_chain: - fi-bsw-nick: [PASS][2] -> [INCOMPLETE][3] ([i915#12904]) +1 other test incomplete [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8273/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html * igt@fbdev@eof: - bat-arlh-2: NOTRUN -> [SKIP][4] ([i915#11345] / [i915#11346]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@fbdev@eof.html * igt@fbdev@info: - bat-arlh-2: NOTRUN -> [SKIP][5] ([i915#11346] / [i915#1849]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@fbdev@info.html * igt@gem_lmem_swapping@basic: - bat-arlh-2: NOTRUN -> [SKIP][6] ([i915#10213] / [i915#11346] / [i915#11671]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@gem_lmem_swapping@basic.html * igt@gem_mmap@basic: - bat-arlh-2: NOTRUN -> [SKIP][7] ([i915#11343] / [i915#11346]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-arlh-2: NOTRUN -> [SKIP][8] ([i915#10197] / [i915#10211] / [i915#11346] / [i915#11725]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - bat-arlh-2: NOTRUN -> [SKIP][9] ([i915#11346] / [i915#12637]) +4 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-arlh-2: NOTRUN -> [SKIP][10] ([i915#10206] / [i915#11346] / [i915#11724]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-arlh-2: NOTRUN -> [SKIP][11] ([i915#10209] / [i915#11346] / [i915#11681]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live: - bat-mtlp-8: [PASS][12] -> [DMESG-FAIL][13] ([i915#12061]) +1 other test dmesg-fail [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8273/bat-mtlp-8/igt@i915_selftest@live.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arlh-2: NOTRUN -> [DMESG-FAIL][14] ([i915#12061]) +1 other test dmesg-fail [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [PASS][15] -> [DMESG-FAIL][16] ([i915#12061]) +1 other test dmesg-fail [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8273/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-mtlp-9/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-arlh-2: NOTRUN -> [SKIP][17] ([i915#10200] / [i915#11346] / [i915#11666] / [i915#12203]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - bat-arlh-2: NOTRUN -> [SKIP][18] ([i915#10200] / [i915#11346] / [i915#11666]) +8 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_psr@psr-primary-page-flip: - bat-arlh-2: NOTRUN -> [SKIP][19] ([i915#11346]) +32 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-arlh-2: NOTRUN -> [SKIP][20] ([i915#10208] / [i915#11346] / [i915#8809]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-arlh-2: NOTRUN -> [SKIP][21] ([i915#10212] / [i915#11346] / [i915#11726]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - bat-arlh-2: NOTRUN -> [SKIP][22] ([i915#10214] / [i915#11346] / [i915#11726]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-arlh-2: NOTRUN -> [SKIP][23] ([i915#10216] / [i915#11346] / [i915#11723]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/bat-arlh-2/igt@prime_vgem@basic-write.html [i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200 [i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206 [i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209 [i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211 [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343 [i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666 [i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723 [i915#11724]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11724 [i915#11725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11725 [i915#11726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11726 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203 [i915#12637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12637 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8273 -> IGTPW_12759 * Linux: CI_DRM_16274 -> CI_DRM_16275 CI-20190529: 20190529 CI_DRM_16274: e2e6ad67ea058d5b08490a2b3dab2152fcfcc24e @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16275: 1476c293076865d6630fe197cb211ea76b40ceb2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12759: 12759 IGT_8273: 5d806121f1cfb38fe7cc4d528d81feb1c11274b1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/index.html [-- Attachment #2: Type: text/html, Size: 10923 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for tests/kms_addfb_basic: Split tests into subtest groups 2025-03-12 10:30 [PATCH i-g-t] tests/kms_addfb_basic: Split tests into subtest groups Karthik B S ` (2 preceding siblings ...) 2025-03-13 3:01 ` ✓ i915.CI.BAT: " Patchwork @ 2025-03-13 4:52 ` Patchwork 2025-03-26 4:37 ` Karthik B S 2025-03-13 17:49 ` ✓ Xe.CI.Full: success " Patchwork 4 siblings, 1 reply; 11+ messages in thread From: Patchwork @ 2025-03-13 4:52 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 129642 bytes --] == Series Details == Series: tests/kms_addfb_basic: Split tests into subtest groups URL : https://patchwork.freedesktop.org/series/146208/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16275_full -> IGTPW_12759_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12759_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12759_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_12759/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): pig-kbl-iris Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12759_full: ### IGT changes ### #### Possible regressions #### * igt@kms_draw_crc@draw-method-blt: - shard-glk: NOTRUN -> [DMESG-WARN][1] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk3/igt@kms_draw_crc@draw-method-blt.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: [PASS][2] -> [FAIL][3] +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-snb: [PASS][4] -> [FAIL][5] +2 other tests fail [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-snb5/igt@kms_flip@flip-vs-blocking-wf-vblank.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb5/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@perf_pmu@rc6-suspend: - shard-tglu: [PASS][6] -> [ABORT][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-tglu-8/igt@perf_pmu@rc6-suspend.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-8/igt@perf_pmu@rc6-suspend.html Known issues ------------ Here are the changes found in IGTPW_12759_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2-9: NOTRUN -> [SKIP][9] ([i915#8411]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#6230]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@api_intel_bb@crc32.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#9318]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@debugfs_test@basic-hwmon.html - shard-tglu: NOTRUN -> [SKIP][12] ([i915#9318]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-4/igt@debugfs_test@basic-hwmon.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#11078]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2-9: NOTRUN -> [SKIP][14] ([i915#11527] / [i915#8414]) +7 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@drm_fdinfo@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8414]) +8 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#8414]) +6 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-14/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@drm_fdinfo@busy@rcs0: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8414]) +17 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-6/igt@drm_fdinfo@busy@rcs0.html * igt@drm_fdinfo@virtual-busy-all: - shard-dg2-9: NOTRUN -> [SKIP][18] ([i915#8414]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@drm_fdinfo@virtual-busy-all.html * igt@gem_bad_reloc@negative-reloc: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#3281]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@gem_bad_reloc@negative-reloc.html * igt@gem_bad_reloc@negative-reloc-bltcopy: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#3281]) +7 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@gem_bad_reloc@negative-reloc-bltcopy.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#4873]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-5/igt@gem_caching@reads.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#13008]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-2/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][24] -> [INCOMPLETE][25] ([i915#12392] / [i915#13356]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#7697]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][27] ([i915#6335]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#8562]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-5/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#8555]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2-9: NOTRUN -> [SKIP][30] ([i915#8555]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][31] ([i915#1099]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb6/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-5/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@unwedge-stress: - shard-dg1: NOTRUN -> [FAIL][33] ([i915#12714] / [i915#5784]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-19/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4812]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@gem_exec_balancer@bonded-semaphore.html - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-5/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2-9: NOTRUN -> [SKIP][36] ([i915#4771]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4036]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-14/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#4525]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@gem_exec_balancer@parallel-keep-submit-fence.html - shard-tglu: NOTRUN -> [SKIP][39] ([i915#4525]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-8/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#6334]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-6/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][41] ([i915#11965]) +4 other tests fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@gem_exec_fence@submit3.html * igt@gem_exec_fence@syncobj-backward-timeline-chain-engines: - shard-snb: NOTRUN -> [SKIP][43] +74 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb5/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2-9: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-14/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#5107]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][48] ([i915#5107]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +7 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-13/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-dg2-9: NOTRUN -> [SKIP][51] ([i915#3281]) +6 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2-9: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@preemptive-hang: - shard-rkl: NOTRUN -> [DMESG-WARN][54] ([i915#12964]) +11 other tests dmesg-warn [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-6/igt@gem_exec_schedule@preemptive-hang.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][55] ([i915#2190]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@gem_lmem_swapping@parallel-multi.html - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4613]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-6/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][58] ([i915#4613]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk6/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-4/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3282]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-2/igt@gem_madvise@dontneed-before-exec.html * igt@gem_media_vme: - shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#284]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@gem_media_vme.html * igt@gem_mmap_gtt@bad-object: - shard-dg2-9: NOTRUN -> [SKIP][62] ([i915#4077]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4077]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-3/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@coherency: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4077]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2-9: NOTRUN -> [SKIP][65] ([i915#4083]) +7 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_mmap_wc@write-read-distinct: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4083]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-19/igt@gem_mmap_wc@write-read-distinct.html - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4083]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@gem_mmap_wc@write-read-distinct.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@gem_partial_pwrite_pread@reads.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-14/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2-9: NOTRUN -> [SKIP][71] ([i915#3282]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][73] ([i915#2658]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb7/igt@gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][74] ([i915#2658]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-8/igt@gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk8/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-regular-context-1: - shard-rkl: [PASS][76] -> [TIMEOUT][77] ([i915#12917] / [i915#12964]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-8/igt@gem_pxp@create-regular-context-1.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-1/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: NOTRUN -> [TIMEOUT][78] ([i915#12964]) +1 other test timeout [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4270]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][80] ([i915#12917] / [i915#12964]) +1 other test timeout [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4270]) +5 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2-9: NOTRUN -> [SKIP][82] ([i915#4270]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#5190] / [i915#8428]) +5 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8428]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-7/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-dg2-9: NOTRUN -> [SKIP][85] ([i915#5190] / [i915#8428]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_render_tiled_blits@basic: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4079]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2-9: NOTRUN -> [SKIP][87] ([i915#4079]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4885]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_swapping@non-threaded: - shard-rkl: [PASS][89] -> [FAIL][90] ([i915#12941]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-7/igt@gem_tiled_swapping@non-threaded.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2-9: NOTRUN -> [SKIP][92] ([i915#3297]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#3297]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@gem_userptr_blits@unsync-overlap.html - shard-rkl: NOTRUN -> [SKIP][94] ([i915#3297]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap.html - shard-tglu: NOTRUN -> [SKIP][96] ([i915#3297]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_workarounds@reset: - shard-mtlp: [PASS][97] -> [ABORT][98] ([i915#13193]) +4 other tests abort [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-3/igt@gem_workarounds@reset.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-7/igt@gem_workarounds@reset.html * igt@gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@gen9_exec_parse@bb-large.html - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#2856]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-secure: - shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html - shard-dg1: NOTRUN -> [SKIP][102] ([i915#2527]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@gen9_exec_parse@bb-secure.html - shard-dg2: NOTRUN -> [SKIP][103] ([i915#2856]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#2527]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2-9: NOTRUN -> [SKIP][105] ([i915#2856]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [PASS][106] -> [ABORT][107] ([i915#10131] / [i915#13592]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [PASS][108] -> [ABORT][109] ([i915#9820]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#8399]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#11681] / [i915#6621]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-19/igt@i915_pm_rps@basic-api.html - shard-dg2: NOTRUN -> [SKIP][112] ([i915#11681] / [i915#6621]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#11681]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@i915_pm_rps@thresholds.html * igt@i915_pm_sseu@full-enable: - shard-dg2-9: NOTRUN -> [SKIP][114] ([i915#4387]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-mtlp: [PASS][115] -> [SKIP][116] ([i915#7984]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-6/igt@i915_power@sanity.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@i915_power@sanity.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#6188]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-8/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#5723]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-3/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg1: NOTRUN -> [DMESG-WARN][119] ([i915#4391] / [i915#4423]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-16/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu-1: NOTRUN -> [INCOMPLETE][120] ([i915#4817] / [i915#7443]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-rkl: [PASS][121] -> [DMESG-FAIL][122] ([i915#12964]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-4/igt@i915_suspend@debugfs-reader.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-1/igt@i915_suspend@debugfs-reader.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#7707]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@intel_hwmon@hwmon-read.html - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#7707]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-9: NOTRUN -> [SKIP][125] ([i915#5190]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4215] / [i915#5190]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4212]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-8/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#12454] / [i915#12712]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#12454] / [i915#12712]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-rkl: NOTRUN -> [SKIP][130] ([i915#12454] / [i915#12712]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#8709]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#8709]) +15 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#3555]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg2: NOTRUN -> [SKIP][134] ([i915#9531]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][135] ([i915#9531]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-16/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][136] ([i915#9531]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#1769] / [i915#3555]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#5286]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#5286]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html - shard-dg1: NOTRUN -> [SKIP][140] ([i915#4538] / [i915#5286]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#5286]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][142] -> [FAIL][143] ([i915#5138]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#3638]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-12/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][145] +5 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][146] +17 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#3638]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#4538] / [i915#5190]) +12 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-9: NOTRUN -> [SKIP][149] ([i915#4538] / [i915#5190]) +7 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#4538]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-19/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#5190]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#6095]) +44 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#12313]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-13/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#6095]) +9 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#6095]) +110 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#10307] / [i915#6095]) +177 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#12313]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-4: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#6095]) +16 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-4.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-dg2-9: NOTRUN -> [SKIP][160] ([i915#6095]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][161] ([i915#12796]) +1 other test incomplete [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-FAIL][162] ([i915#12964]) +1 other test dmesg-fail [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#6095]) +96 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#6095]) +84 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#12313]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-dg2: NOTRUN -> [SKIP][166] ([i915#12313]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][167] ([i915#10307] / [i915#6095]) +44 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#3742]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-13/igt@kms_cdclk@mode-transition-all-outputs.html - shard-tglu: NOTRUN -> [SKIP][169] ([i915#3742]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-5/igt@kms_cdclk@mode-transition-all-outputs.html - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#13784]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@kms_cdclk@mode-transition-all-outputs.html - shard-dg2: NOTRUN -> [SKIP][171] ([i915#13784]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-8/igt@kms_cdclk@mode-transition-all-outputs.html - shard-rkl: NOTRUN -> [SKIP][172] ([i915#3742]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#13781]) +4 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +4 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-15/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +7 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +8 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_chamelium_frames@hdmi-crc-fast.html - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +4 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +8 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-dg2-9: NOTRUN -> [SKIP][180] ([i915#11151] / [i915#7828]) +6 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_content_protection@atomic@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][181] ([i915#7173]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-3.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3299]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#3116] / [i915#3299]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#9424]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#6944] / [i915#9424]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][186] ([i915#7118] / [i915#9424]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#8814]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [PASS][188] -> [FAIL][189] ([i915#13566]) +2 other tests fail [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][190] ([i915#13566]) +3 other tests fail [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8814]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-32x10.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#3555]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-9: NOTRUN -> [SKIP][193] ([i915#13049]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#13049]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#3555]) +6 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2-9: NOTRUN -> [SKIP][196] ([i915#3555]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: [PASS][197] -> [FAIL][198] ([i915#13566]) +1 other test fail [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-256x85.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#13049]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][200] ([i915#12358] / [i915#7882]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk7/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][201] ([i915#12358]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk7/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#9809]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][203] +28 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-dg2-9: NOTRUN -> [SKIP][204] ([i915#13046] / [i915#5354]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#13046] / [i915#5354]) +6 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#4103] / [i915#4213]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#4103]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#4213]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-dg2-9: NOTRUN -> [SKIP][209] ([i915#4103] / [i915#4213]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][210] ([i915#4103]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-dg1: NOTRUN -> [SKIP][211] ([i915#4103] / [i915#4213]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2-9: NOTRUN -> [SKIP][212] ([i915#9833]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#9833]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_aux_dev: - shard-dg2-9: NOTRUN -> [SKIP][214] ([i915#1257]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#13749]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-9/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-mst: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#13748]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-9: NOTRUN -> [SKIP][219] ([i915#3840] / [i915#9053]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#2575]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html - shard-dg2-9: NOTRUN -> [SKIP][221] ([i915#13798]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#13798]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-12/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#13798]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html - shard-dg2: NOTRUN -> [SKIP][224] ([i915#13798]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_feature_discovery@display-2x: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#1839]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-2/igt@kms_feature_discovery@display-2x.html - shard-dg2-9: NOTRUN -> [SKIP][226] ([i915#1839]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_feature_discovery@display-2x.html - shard-rkl: NOTRUN -> [SKIP][227] ([i915#1839]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][228] ([i915#1839]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-16/igt@kms_feature_discovery@display-2x.html - shard-tglu: NOTRUN -> [SKIP][229] ([i915#1839]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-3/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#9337]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_feature_discovery@dp-mst.html - shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#9337]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#658]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-8/igt@kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][233] ([i915#658]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-3/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#9934]) +2 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#9934]) +6 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#3637]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][237] ([i915#8381]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#8381]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-dg2: NOTRUN -> [SKIP][239] ([i915#8381]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2-9: NOTRUN -> [SKIP][240] ([i915#9934]) +6 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-dg1: NOTRUN -> [SKIP][241] ([i915#9934]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-16/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#3637]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][243] ([i915#12745] / [i915#4839]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][244] ([i915#4839]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#3637]) +5 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [PASS][246] -> [DMESG-WARN][247] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-4/igt@kms_flip@absolute-wf_vblank-interruptible.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@kms_flip@absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a2: - shard-rkl: [PASS][248] -> [FAIL][249] ([i915#13734]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a2.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555] / [i915#8813]) +4 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555]) +3 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#2672]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#3555]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-15/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][254] ([i915#2672]) +3 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555]) +3 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#8813]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#2672] / [i915#3555] / [i915#5190]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html - shard-tglu: NOTRUN -> [SKIP][260] ([i915#2587] / [i915#2672] / [i915#3555]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][261] ([i915#2672] / [i915#3555]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#2587] / [i915#2672]) +4 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html - shard-dg2-9: NOTRUN -> [SKIP][263] ([i915#2672]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [PASS][264] -> [DMESG-WARN][265] ([i915#12964]) +14 other tests dmesg-warn [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#5354]) +32 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][267] ([i915#8708]) +9 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html - shard-snb: [PASS][268] -> [SKIP][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2-9: NOTRUN -> [SKIP][270] ([i915#5354]) +18 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#1825]) +48 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-dg2: [PASS][272] -> [FAIL][273] ([i915#6880]) +2 other tests fail [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-stridechange.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#10055]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html - shard-dg2: NOTRUN -> [SKIP][275] ([i915#10055]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#8708]) +20 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#3458]) +4 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#8708]) +4 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][279] +97 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][280] +28 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#3023]) +23 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: - shard-dg2-9: NOTRUN -> [SKIP][282] ([i915#3458]) +14 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#9766]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#3458]) +14 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#10433] / [i915#3458]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][286] +8 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#1825]) +23 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#8708]) +11 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#6118]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_hdr@bpc-switch-suspend.html - shard-dg2: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8228]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-8/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-swap: - shard-dg2: [PASS][292] -> [SKIP][293] ([i915#3555] / [i915#8228]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-10/igt@kms_hdr@static-swap.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@kms_hdr@static-swap.html - shard-rkl: NOTRUN -> [SKIP][294] ([i915#3555] / [i915#8228]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-dg2-9: NOTRUN -> [SKIP][295] ([i915#3555] / [i915#8228]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#10656]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_joiner@basic-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#10656]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-2/igt@kms_joiner@basic-big-joiner.html - shard-dg2-9: NOTRUN -> [SKIP][298] ([i915#10656]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2-9: NOTRUN -> [SKIP][299] ([i915#12388]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#13688]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-8/igt@kms_joiner@basic-max-non-joiner.html - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#13688]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-7/igt@kms_joiner@basic-max-non-joiner.html - shard-dg2: NOTRUN -> [SKIP][302] ([i915#13688]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-3/igt@kms_joiner@basic-max-non-joiner.html - shard-rkl: NOTRUN -> [SKIP][303] ([i915#13688]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@kms_joiner@basic-max-non-joiner.html - shard-dg1: NOTRUN -> [SKIP][304] ([i915#13688]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-17/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#10656]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-12/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][306] ([i915#10656]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-7/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][307] ([i915#10656]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#12394]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-9/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#4816]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#6301]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][311] +13 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][312] ([i915#13409] / [i915#13476]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][313] ([i915#10647] / [i915#12169]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][314] ([i915#10647]) +1 other test fail [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#8821]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#3555] / [i915#8806]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-3/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-9: NOTRUN -> [SKIP][317] ([i915#6953] / [i915#9423]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#3555]) +7 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#12247]) +6 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#12247]) +4 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2-9: NOTRUN -> [SKIP][321] ([i915#12247] / [i915#6953] / [i915#9423]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-9: NOTRUN -> [SKIP][322] ([i915#12247] / [i915#9423]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: - shard-dg2-9: NOTRUN -> [SKIP][323] ([i915#12247]) +7 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#12247] / [i915#6953]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#12247] / [i915#6953]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#12247]) +3 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#12247] / [i915#6953] / [i915#9423]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#12247]) +3 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html * igt@kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#9685]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-5/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-9: NOTRUN -> [SKIP][330] ([i915#5978]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#8430]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html - shard-dg1: NOTRUN -> [SKIP][332] ([i915#8430]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@kms_pm_lpsp@screens-disabled.html - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#8430]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-6/igt@kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][334] ([i915#8430]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#9519]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-8/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@fences-dpms: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#4077]) +8 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@kms_pm_rpm@fences-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [PASS][337] -> [SKIP][338] ([i915#9519]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][339] -> [SKIP][340] ([i915#9519]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#6524]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@kms_prime@basic-crc-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#6524]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-3/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#6524] / [i915#6805]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@d3hot: - shard-dg2-9: NOTRUN -> [SKIP][344] ([i915#6524] / [i915#6805]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][345] ([i915#11520]) +8 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#11520]) +6 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html - shard-tglu-1: NOTRUN -> [SKIP][347] ([i915#11520]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][348] ([i915#11520]) +3 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][349] ([i915#11520]) +12 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#12316]) +5 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#11520]) +11 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#9808]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-snb: NOTRUN -> [SKIP][353] ([i915#11520]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-dg2-9: NOTRUN -> [SKIP][354] ([i915#11520]) +5 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#9683]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_psr2_su@page_flip-nv12.html - shard-rkl: NOTRUN -> [SKIP][356] ([i915#9683]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][357] ([i915#4348]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-6/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg2-9: NOTRUN -> [SKIP][358] ([i915#9683]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][359] ([i915#9683]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-15/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][360] ([i915#9683]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2-9: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +13 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#1072] / [i915#9732]) +26 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr-primary-render: - shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#9732]) +2 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@fbc-psr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][364] ([i915#9732]) +26 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_psr@fbc-psr-sprite-plane-move.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +11 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-19/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][366] ([i915#9688]) +16 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@kms_psr@fbc-psr2-sprite-mmap-gtt@edp-1.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][367] ([i915#1072] / [i915#9732]) +23 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][368] +411 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk1/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#9685]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][370] ([i915#12755]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][371] ([i915#5289]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-16/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#12755]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][373] ([i915#12755] / [i915#5190]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][374] ([i915#5289]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][375] ([i915#5289]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2-9: NOTRUN -> [SKIP][376] ([i915#12755]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][377] ([i915#3555]) +6 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][378] ([i915#13179]) +1 other test abort [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@kms_selftest@drm_framebuffer.html - shard-glk: NOTRUN -> [ABORT][379] ([i915#13179]) +1 other test abort [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk8/igt@kms_selftest@drm_framebuffer.html * igt@kms_universal_plane@universal-plane-pageflip-windowed: - shard-dg1: [PASS][380] -> [DMESG-WARN][381] ([i915#4423]) +4 other tests dmesg-warn [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-17/igt@kms_universal_plane@universal-plane-pageflip-windowed.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-17/igt@kms_universal_plane@universal-plane-pageflip-windowed.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][382] ([i915#9906]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][383] ([i915#3555] / [i915#8808]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][384] ([i915#11920]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][385] ([i915#9906]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@kms_vrr@max-min.html - shard-mtlp: NOTRUN -> [SKIP][386] ([i915#8808] / [i915#9906]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-6/igt@kms_vrr@max-min.html - shard-rkl: NOTRUN -> [SKIP][387] ([i915#9906]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-tglu: NOTRUN -> [SKIP][388] ([i915#9906]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-3/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2-9: NOTRUN -> [SKIP][389] ([i915#9906]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#2437]) +1 other test skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#2437] / [i915#9412]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][392] ([i915#2437] / [i915#9412]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][393] ([i915#2437]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk8/igt@kms_writeback@writeback-pixel-formats.html - shard-rkl: NOTRUN -> [SKIP][394] ([i915#2437] / [i915#9412]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][395] ([i915#7387]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@invalid-init: - shard-rkl: NOTRUN -> [FAIL][396] ([i915#13663]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@perf_pmu@invalid-init.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][397] ([i915#8516]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-5/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][398] ([i915#3291] / [i915#3708]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][399] ([i915#3291] / [i915#3708]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][400] ([i915#3708]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-17/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][401] ([i915#3708] / [i915#4077]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-3/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][402] ([i915#3708]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-7/igt@prime_vgem@fence-write-hang.html - shard-dg2: NOTRUN -> [SKIP][403] ([i915#3708]) +1 other test skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-3/igt@prime_vgem@fence-write-hang.html - shard-rkl: NOTRUN -> [SKIP][404] ([i915#3708]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][405] ([i915#9917]) +1 other test skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-6/igt@sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][406] ([i915#9917]) +2 other tests skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][407] ([i915#9917]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-12/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [FAIL][408] ([i915#12910]) +19 other tests fail [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-3/igt@sriov_basic@bind-unbind-vf@vf-4.html * igt@sriov_basic@bind-unbind-vf@vf-5: - shard-mtlp: NOTRUN -> [FAIL][409] ([i915#12910]) +9 other tests fail [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-5/igt@sriov_basic@bind-unbind-vf@vf-5.html * igt@tools_test@sysfs_l3_parity: - shard-mtlp: NOTRUN -> [SKIP][410] ([i915#4818]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_eio@kms: - shard-rkl: [DMESG-WARN][411] ([i915#13363]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-8/igt@gem_eio@kms.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@gem_eio@kms.html * igt@gem_eio@suspend: - shard-mtlp: [ABORT][413] ([i915#13193]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-7/igt@gem_eio@suspend.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-7/igt@gem_eio@suspend.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: [TIMEOUT][415] ([i915#12964]) -> [PASS][416] [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-4/igt@gem_pxp@create-valid-protected-context.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-rkl: [TIMEOUT][417] ([i915#12917] / [i915#12964]) -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-off-3.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][419] ([i915#9820]) -> [PASS][420] [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: [FAIL][421] ([i915#12942]) -> [PASS][422] +1 other test pass [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-4/igt@i915_pm_rc6_residency@rc6-accuracy.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-8/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-dg1: [FAIL][423] ([i915#3591]) -> [PASS][424] +2 other tests pass [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_selftest@live: - shard-rkl: [DMESG-FAIL][425] ([i915#13550]) -> [PASS][426] +1 other test pass [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-6/igt@i915_selftest@live.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@i915_selftest@live.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: [FAIL][427] ([i915#5956]) -> [PASS][428] +1 other test pass [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][429] ([i915#5138]) -> [PASS][430] [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-dg1: [DMESG-WARN][431] ([i915#4423]) -> [PASS][432] +8 other tests pass [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-14/igt@kms_cursor_crc@cursor-random-128x42.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-12/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-tglu: [FAIL][433] ([i915#13566]) -> [PASS][434] +5 other tests pass [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x42.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-rkl: [FAIL][435] ([i915#13566]) -> [PASS][436] +3 other tests pass [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-64x21.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: [FAIL][437] ([i915#11832] / [i915#13734]) -> [PASS][438] [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1: - shard-snb: [FAIL][439] ([i915#11832]) -> [PASS][440] [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-fences@a-hdmi-a1: - shard-snb: [INCOMPLETE][441] ([i915#12314]) -> [PASS][442] +1 other test pass [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-snb6/igt@kms_flip@flip-vs-fences@a-hdmi-a1.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb7/igt@kms_flip@flip-vs-fences@a-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate: - shard-tglu: [FAIL][443] ([i915#11832]) -> [PASS][444] [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-fb-recreate@a-edp1: - shard-mtlp: [FAIL][445] -> [PASS][446] +2 other tests pass [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-2/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html * igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1: - shard-tglu: [FAIL][447] -> [PASS][448] +3 other tests pass [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][449] ([i915#12756]) -> [PASS][450] [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][451] ([i915#9519]) -> [PASS][452] +1 other test pass [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][453] ([i915#9519]) -> [PASS][454] +1 other test pass [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr@psr2-cursor-mmap-gtt@edp-1: - shard-mtlp: [ABORT][455] -> [PASS][456] +1 other test pass [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-2/igt@kms_psr@psr2-cursor-mmap-gtt@edp-1.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-6/igt@kms_psr@psr2-cursor-mmap-gtt@edp-1.html * igt@kms_psr@psr2-primary-mmap-cpu: - shard-mtlp: [FAIL][457] ([i915#13509]) -> [PASS][458] +1 other test pass [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-4/igt@kms_psr@psr2-primary-mmap-cpu.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@kms_psr@psr2-primary-mmap-cpu.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-snb: [DMESG-WARN][459] -> [PASS][460] +1 other test pass [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-snb5/igt@kms_vblank@ts-continuation-dpms-suspend.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb5/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@perf@gen12-oa-tlb-invalidate: - shard-rkl: [DMESG-WARN][461] ([i915#12964]) -> [PASS][462] +13 other tests pass [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-6/igt@perf@gen12-oa-tlb-invalidate.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@perf@gen12-oa-tlb-invalidate.html * igt@perf_pmu@busy-double-start@vecs0: - shard-dg1: [FAIL][463] ([i915#4349]) -> [PASS][464] +3 other tests pass [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-13/igt@perf_pmu@busy-double-start@vecs0.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-17/igt@perf_pmu@busy-double-start@vecs0.html - shard-mtlp: [FAIL][465] ([i915#4349]) -> [PASS][466] +1 other test pass [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-6/igt@perf_pmu@busy-double-start@vecs0.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-7/igt@perf_pmu@busy-double-start@vecs0.html * igt@perf_pmu@module-unload: - shard-snb: [ABORT][467] ([i915#11703]) -> [PASS][468] [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-snb5/igt@perf_pmu@module-unload.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb6/igt@perf_pmu@module-unload.html - shard-dg2: [ABORT][469] -> [PASS][470] [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-1/igt@perf_pmu@module-unload.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@perf_pmu@module-unload.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-rkl: [FAIL][471] ([i915#4349]) -> [PASS][472] +1 other test pass [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html #### Warnings #### * igt@gem_eio@hibernate: - shard-dg1: [ABORT][473] ([i915#7975]) -> [ABORT][474] ([i915#4391] / [i915#4423] / [i915#7975]) [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-12/igt@gem_eio@hibernate.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-12/igt@gem_eio@hibernate.html * igt@gem_pxp@display-protected-crc: - shard-rkl: [SKIP][475] ([i915#4270]) -> [TIMEOUT][476] ([i915#12917] / [i915#12964]) +1 other test timeout [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-8/igt@gem_pxp@display-protected-crc.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: [FAIL][477] ([i915#13811]) -> [TIMEOUT][478] ([i915#12917] / [i915#12964]) [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-1/igt@gem_pxp@hw-rejects-pxp-context.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: [TIMEOUT][479] ([i915#12917] / [i915#12964]) -> [SKIP][480] ([i915#4270]) +1 other test skip [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-4/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@kms_content_protection@atomic: - shard-dg2: [SKIP][481] ([i915#7118] / [i915#9424]) -> [FAIL][482] ([i915#7173]) [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-6/igt@kms_content_protection@atomic.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: [SKIP][483] ([i915#3299]) -> [SKIP][484] ([i915#3299] / [i915#4423]) [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-12/igt@kms_content_protection@dp-mst-lic-type-0.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy: - shard-dg2: [FAIL][485] ([i915#7173]) -> [SKIP][486] ([i915#7118] / [i915#9424]) [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-10/igt@kms_content_protection@legacy.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-dg2: [FAIL][487] ([i915#7173]) -> [SKIP][488] ([i915#9424]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-11/igt@kms_content_protection@lic-type-0.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_content_protection@lic-type-0.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-mtlp: [ABORT][489] ([i915#8810]) -> [SKIP][490] ([i915#3555] / [i915#8810] / [i915#8813]) [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: [ABORT][491] ([i915#8810]) -> [SKIP][492] ([i915#3555] / [i915#8810]) [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [SKIP][493] ([i915#3458]) -> [SKIP][494] ([i915#10433] / [i915#3458]) +2 other tests skip [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-dg1: [SKIP][495] ([i915#1187] / [i915#12713]) -> [SKIP][496] ([i915#12713]) [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-16/igt@kms_hdr@brightness-with-hdr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][497] ([i915#9340]) -> [SKIP][498] ([i915#3828]) [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr@psr-cursor-mmap-gtt: - shard-dg1: [SKIP][499] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][500] ([i915#1072] / [i915#9732]) [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-12/igt@kms_psr@psr-cursor-mmap-gtt.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-13/igt@kms_psr@psr-cursor-mmap-gtt.html * igt@kms_vrr@flip-basic-fastset: - shard-dg1: [SKIP][501] ([i915#9906]) -> [SKIP][502] ([i915#4423] / [i915#9906]) [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-14/igt@kms_vrr@flip-basic-fastset.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-17/igt@kms_vrr@flip-basic-fastset.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703 [i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12714]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12714 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12941]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941 [i915#12942]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13509]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13509 [i915#13550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13550 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13592]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13592 [i915#13663]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13663 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784 [i915#13798]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13798 [i915#13811]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13811 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [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#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8273 -> IGTPW_12759 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_16275: 1476c293076865d6630fe197cb211ea76b40ceb2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12759: 12759 IGT_8273: 5d806121f1cfb38fe7cc4d528d81feb1c11274b1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/index.html [-- Attachment #2: Type: text/html, Size: 164932 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: ✗ i915.CI.Full: failure for tests/kms_addfb_basic: Split tests into subtest groups 2025-03-13 4:52 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-03-26 4:37 ` Karthik B S 0 siblings, 0 replies; 11+ messages in thread From: Karthik B S @ 2025-03-26 4:37 UTC (permalink / raw) To: igt-dev [-- Attachment #1: Type: text/plain, Size: 161262 bytes --] Hi, These failures are unrelated to the patch. Merged this. Thanks, Karthik.B.S On 3/13/2025 10:22 AM, Patchwork wrote: > Project List - Patchwork *Patch Details* > *Series:* tests/kms_addfb_basic: Split tests into subtest groups > *URL:* https://patchwork.freedesktop.org/series/146208/ > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/index.html > > > CI Bug Log - changes from CI_DRM_16275_full -> IGTPW_12759_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_12759_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12759_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_12759/index.html > > > Participating hosts (11 -> 10) > > Missing (1): pig-kbl-iris > > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_12759_full: > > > IGT changes > > > Possible regressions > > * > > igt@kms_draw_crc@draw-method-blt: > > o shard-glk: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk3/igt@kms_draw_crc@draw-method-blt.html> > +1 other test dmesg-warn > * > > igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> > +1 other test fail > * > > igt@kms_flip@flip-vs-blocking-wf-vblank: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-snb5/igt@kms_flip@flip-vs-blocking-wf-vblank.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb5/igt@kms_flip@flip-vs-blocking-wf-vblank.html> > +2 other tests fail > * > > igt@perf_pmu@rc6-suspend: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-tglu-8/igt@perf_pmu@rc6-suspend.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-8/igt@perf_pmu@rc6-suspend.html> > > > Known issues > > Here are the changes found in IGTPW_12759_full that come from known > issues: > > > IGT changes > > > Issues hit > > * > > igt@api_intel_bb@blit-reloc-keep-cache: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@api_intel_bb@blit-reloc-keep-cache.html> > (i915#8411 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) > * > > igt@api_intel_bb@blit-reloc-purge-cache: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@api_intel_bb@blit-reloc-purge-cache.html> > (i915#8411 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) > +1 other test skip > * > > igt@api_intel_bb@crc32: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@api_intel_bb@crc32.html> > (i915#6230 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230>) > * > > igt@debugfs_test@basic-hwmon: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@debugfs_test@basic-hwmon.html> > (i915#9318 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-4/igt@debugfs_test@basic-hwmon.html> > (i915#9318 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318>) > * > > igt@device_reset@unbind-cold-reset-rebind: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@device_reset@unbind-cold-reset-rebind.html> > (i915#11078 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>) > * > > igt@drm_fdinfo@busy-check-all@vecs1: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@drm_fdinfo@busy-check-all@vecs1.html> > (i915#11527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527> > / i915#8414 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>) > +7 other tests skip > * > > igt@drm_fdinfo@busy-idle-check-all@ccs0: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html> > (i915#8414 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>) > +8 other tests skip > * > > igt@drm_fdinfo@busy-idle-check-all@vcs1: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-14/igt@drm_fdinfo@busy-idle-check-all@vcs1.html> > (i915#8414 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>) > +6 other tests skip > * > > igt@drm_fdinfo@busy@rcs0: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-6/igt@drm_fdinfo@busy@rcs0.html> > (i915#8414 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>) > +17 other tests skip > * > > igt@drm_fdinfo@virtual-busy-all: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@drm_fdinfo@virtual-busy-all.html> > (i915#8414 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>) > * > > igt@gem_bad_reloc@negative-reloc: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@gem_bad_reloc@negative-reloc.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > +7 other tests skip > * > > igt@gem_bad_reloc@negative-reloc-bltcopy: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@gem_bad_reloc@negative-reloc-bltcopy.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > +7 other tests skip > * > > igt@gem_caching@reads: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-5/igt@gem_caching@reads.html> > (i915#4873 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873>) > +1 other test skip > * > > igt@gem_ccs@ctrl-surf-copy-new-ctx: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html> > (i915#9323 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) > * > > igt@gem_ccs@large-ctrl-surf-copy: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-2/igt@gem_ccs@large-ctrl-surf-copy.html> > (i915#13008 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008>) > * > > igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html> > (i915#12392 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392> > / i915#13356 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) > * > > igt@gem_close_race@multigpu-basic-process: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@gem_close_race@multigpu-basic-process.html> > (i915#7697 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) > +1 other test skip > * > > igt@gem_create@create-ext-cpu-access-big: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@gem_create@create-ext-cpu-access-big.html> > (i915#6335 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>) > * > > igt@gem_create@create-ext-set-pat: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-5/igt@gem_create@create-ext-set-pat.html> > (i915#8562 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562>) > * > > igt@gem_ctx_persistence@heartbeat-hang: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hang.html> > (i915#8555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) > +1 other test skip > * > > igt@gem_ctx_persistence@heartbeat-stop: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-stop.html> > (i915#8555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) > * > > igt@gem_ctx_persistence@legacy-engines-mixed-process: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb6/igt@gem_ctx_persistence@legacy-engines-mixed-process.html> > (i915#1099 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099>) > * > > igt@gem_ctx_sseu@mmap-args: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-5/igt@gem_ctx_sseu@mmap-args.html> > (i915#280 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) > * > > igt@gem_eio@unwedge-stress: > > o shard-dg1: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-19/igt@gem_eio@unwedge-stress.html> > (i915#12714 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12714> > / i915#5784 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784>) > * > > igt@gem_exec_balancer@bonded-semaphore: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@gem_exec_balancer@bonded-semaphore.html> > (i915#4812 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) > +2 other tests skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-5/igt@gem_exec_balancer@bonded-semaphore.html> > (i915#4812 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) > * > > igt@gem_exec_balancer@bonded-sync: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_exec_balancer@bonded-sync.html> > (i915#4771 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771>) > * > > igt@gem_exec_balancer@invalid-bonds: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-14/igt@gem_exec_balancer@invalid-bonds.html> > (i915#4036 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036>) > * > > igt@gem_exec_balancer@parallel-keep-submit-fence: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@gem_exec_balancer@parallel-keep-submit-fence.html> > (i915#4525 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-8/igt@gem_exec_balancer@parallel-keep-submit-fence.html> > (i915#4525 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) > +2 other tests skip > * > > igt@gem_exec_capture@capture-invisible: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-6/igt@gem_exec_capture@capture-invisible.html> > (i915#6334 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) > +1 other test skip > * > > igt@gem_exec_capture@capture@vecs0-lmem0: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@gem_exec_capture@capture@vecs0-lmem0.html> > (i915#11965 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965>) > +4 other tests fail > * > > igt@gem_exec_fence@submit3: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@gem_exec_fence@submit3.html> > (i915#4812 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) > * > > igt@gem_exec_fence@syncobj-backward-timeline-chain-engines: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb5/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html> > +74 other tests skip > * > > igt@gem_exec_flush@basic-uc-pro-default: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_exec_flush@basic-uc-pro-default.html> > (i915#3539 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> > / i915#4852 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) > +1 other test skip > * > > igt@gem_exec_flush@basic-uc-rw-default: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-14/igt@gem_exec_flush@basic-uc-rw-default.html> > (i915#3539 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> > / i915#4852 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) > +1 other test skip > * > > igt@gem_exec_flush@basic-wb-ro-before-default: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@gem_exec_flush@basic-wb-ro-before-default.html> > (i915#3539 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> > / i915#4852 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) > +1 other test skip > * > > igt@gem_exec_params@rsvd2-dirt: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@gem_exec_params@rsvd2-dirt.html> > (i915#5107 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@gem_exec_params@rsvd2-dirt.html> > (i915#5107 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107>) > * > > igt@gem_exec_reloc@basic-cpu-gtt-noreloc: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > +7 other tests skip > * > > igt@gem_exec_reloc@basic-wc-cpu-noreloc: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-13/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > +5 other tests skip > * > > igt@gem_exec_reloc@basic-write-read-noreloc: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_exec_reloc@basic-write-read-noreloc.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > +6 other tests skip > * > > igt@gem_exec_schedule@preempt-queue-chain: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html> > (i915#4537 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> > / i915#4812 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) > +2 other tests skip > * > > igt@gem_exec_schedule@preempt-queue-contexts-chain: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_exec_schedule@preempt-queue-contexts-chain.html> > (i915#4537 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> > / i915#4812 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) > * > > igt@gem_exec_schedule@preemptive-hang: > > o shard-rkl: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-6/igt@gem_exec_schedule@preemptive-hang.html> > (i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > +11 other tests dmesg-warn > * > > igt@gem_huc_copy@huc-copy: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk1/igt@gem_huc_copy@huc-copy.html> > (i915#2190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>) > * > > igt@gem_lmem_swapping@parallel-multi: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@gem_lmem_swapping@parallel-multi.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > +2 other tests skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-6/igt@gem_lmem_swapping@parallel-multi.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > +2 other tests skip > * > > igt@gem_lmem_swapping@random-engines: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk6/igt@gem_lmem_swapping@random-engines.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > +4 other tests skip > * > > igt@gem_lmem_swapping@verify-ccs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-4/igt@gem_lmem_swapping@verify-ccs.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > +2 other tests skip > * > > igt@gem_madvise@dontneed-before-exec: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-2/igt@gem_madvise@dontneed-before-exec.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > +3 other tests skip > * > > igt@gem_media_vme: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@gem_media_vme.html> > (i915#284 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284>) > * > > igt@gem_mmap_gtt@bad-object: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_mmap_gtt@bad-object.html> > (i915#4077 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > +5 other tests skip > * > > igt@gem_mmap_gtt@big-bo-tiledy: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-3/igt@gem_mmap_gtt@big-bo-tiledy.html> > (i915#4077 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > +4 other tests skip > * > > igt@gem_mmap_gtt@coherency: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@gem_mmap_gtt@coherency.html> > (i915#4077 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > +5 other tests skip > * > > igt@gem_mmap_wc@invalid-flags: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_mmap_wc@invalid-flags.html> > (i915#4083 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) > +7 other tests skip > * > > igt@gem_mmap_wc@write-cpu-read-wc: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@gem_mmap_wc@write-cpu-read-wc.html> > (i915#4083 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) > +4 other tests skip > * > > igt@gem_mmap_wc@write-read-distinct: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-19/igt@gem_mmap_wc@write-read-distinct.html> > (i915#4083 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) > +3 other tests skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@gem_mmap_wc@write-read-distinct.html> > (i915#4083 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) > +3 other tests skip > * > > igt@gem_partial_pwrite_pread@reads: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@gem_partial_pwrite_pread@reads.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > +3 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-14/igt@gem_partial_pwrite_pread@reads.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > +1 other test skip > * > > igt@gem_partial_pwrite_pread@reads-uncached: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_partial_pwrite_pread@reads-uncached.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > +2 other tests skip > * > > igt@gem_partial_pwrite_pread@writes-after-reads: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > +4 other tests skip > * > > igt@gem_pread@exhaustion: > > o shard-snb: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb7/igt@gem_pread@exhaustion.html> > (i915#2658 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658>) > o shard-tglu: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-8/igt@gem_pread@exhaustion.html> > (i915#2658 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658>) > o shard-glk: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk8/igt@gem_pread@exhaustion.html> > (i915#2658 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658>) > * > > igt@gem_pxp@create-regular-context-1: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-8/igt@gem_pxp@create-regular-context-1.html> > -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-1/igt@gem_pxp@create-regular-context-1.html> > (i915#12917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> > / i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > * > > igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: > > o shard-rkl: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> > (i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > +1 other test timeout > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> > (i915#4270 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) > +2 other tests skip > * > > igt@gem_pxp@protected-raw-src-copy-not-readible: > > o shard-rkl: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html> > (i915#12917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> > / i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > +1 other test timeout > * > > igt@gem_pxp@regular-baseline-src-copy-readible: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html> > (i915#4270 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) > +5 other tests skip > * > > igt@gem_pxp@reject-modify-context-protection-off-2: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_pxp@reject-modify-context-protection-off-2.html> > (i915#4270 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) > +2 other tests skip > * > > igt@gem_render_copy@y-tiled-ccs-to-y-tiled: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html> > (i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> > / i915#8428 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) > +5 other tests skip > * > > igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-7/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html> > (i915#8428 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) > +2 other tests skip > * > > igt@gem_render_copy@y-tiled-to-vebox-linear: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_render_copy@y-tiled-to-vebox-linear.html> > (i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> > / i915#8428 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) > +3 other tests skip > * > > igt@gem_render_tiled_blits@basic: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@gem_render_tiled_blits@basic.html> > (i915#4079 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) > * > > igt@gem_set_tiling_vs_blt@untiled-to-tiled: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html> > (i915#4079 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) > * > > igt@gem_softpin@evict-snoop: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@gem_softpin@evict-snoop.html> > (i915#4885 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885>) > * > > igt@gem_tiled_swapping@non-threaded: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-7/igt@gem_tiled_swapping@non-threaded.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@gem_tiled_swapping@non-threaded.html> > (i915#12941 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941>) > * > > igt@gem_userptr_blits@create-destroy-unsync: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@gem_userptr_blits@create-destroy-unsync.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > +3 other tests skip > * > > igt@gem_userptr_blits@dmabuf-unsync: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gem_userptr_blits@dmabuf-unsync.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > +3 other tests skip > * > > igt@gem_userptr_blits@unsync-overlap: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@gem_userptr_blits@unsync-overlap.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > +3 other tests skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@gem_userptr_blits@unsync-overlap.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > * > > igt@gem_userptr_blits@unsync-unmap: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@gem_userptr_blits@unsync-unmap.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > * > > igt@gem_workarounds@reset: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-3/igt@gem_workarounds@reset.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-7/igt@gem_workarounds@reset.html> > (i915#13193 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193>) > +4 other tests abort > * > > igt@gen9_exec_parse@bb-large: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@gen9_exec_parse@bb-large.html> > (i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> > / i915#2856 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > +3 other tests skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@gen9_exec_parse@bb-large.html> > (i915#2856 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > +2 other tests skip > * > > igt@gen9_exec_parse@bb-secure: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html> > (i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> > / i915#2856 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@gen9_exec_parse@bb-secure.html> > (i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) > +1 other test skip > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@gen9_exec_parse@bb-secure.html> > (i915#2856 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > * > > igt@gen9_exec_parse@bb-start-far: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@gen9_exec_parse@bb-start-far.html> > (i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) > +4 other tests skip > * > > igt@gen9_exec_parse@unaligned-access: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@gen9_exec_parse@unaligned-access.html> > (i915#2856 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > +3 other tests skip > * > > igt@i915_module_load@reload-with-fault-injection: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html> > (i915#10131 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131> > / i915#13592 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13592>) > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html> > (i915#9820 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>) > * > > igt@i915_pm_freq_api@freq-reset: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@i915_pm_freq_api@freq-reset.html> > (i915#8399 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) > * > > igt@i915_pm_rps@basic-api: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-19/igt@i915_pm_rps@basic-api.html> > (i915#11681 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681> > / i915#6621 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@i915_pm_rps@basic-api.html> > (i915#11681 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681> > / i915#6621 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>) > * > > igt@i915_pm_rps@thresholds: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@i915_pm_rps@thresholds.html> > (i915#11681 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681>) > * > > igt@i915_pm_sseu@full-enable: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@i915_pm_sseu@full-enable.html> > (i915#4387 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>) > * > > igt@i915_power@sanity: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-6/igt@i915_power@sanity.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@i915_power@sanity.html> > (i915#7984 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984>) > * > > igt@i915_query@query-topology-coherent-slice-mask: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-8/igt@i915_query@query-topology-coherent-slice-mask.html> > (i915#6188 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188>) > * > > igt@i915_query@test-query-geometry-subslices: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-3/igt@i915_query@test-query-geometry-subslices.html> > (i915#5723 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723>) > * > > igt@i915_suspend@basic-s2idle-without-i915: > > o shard-dg1: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-16/igt@i915_suspend@basic-s2idle-without-i915.html> > (i915#4391 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391> > / i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) > * > > igt@i915_suspend@basic-s3-without-i915: > > o shard-tglu-1: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html> > (i915#4817 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817> > / i915#7443 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443>) > * > > igt@i915_suspend@debugfs-reader: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-4/igt@i915_suspend@debugfs-reader.html> > -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-1/igt@i915_suspend@debugfs-reader.html> > (i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > * > > igt@intel_hwmon@hwmon-read: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@intel_hwmon@hwmon-read.html> > (i915#7707 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@intel_hwmon@hwmon-read.html> > (i915#7707 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>) > * > > igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> > (i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > +2 other tests skip > * > > igt@kms_addfb_basic@basic-y-tiled-legacy: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@kms_addfb_basic@basic-y-tiled-legacy.html> > (i915#4215 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215> > / i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > * > > igt@kms_addfb_basic@bo-too-small-due-to-tiling: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-8/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html> > (i915#4212 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) > * > > igt@kms_addfb_basic@invalid-smem-bo-on-discrete: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> > (i915#12454 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> > / i915#12712 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> > (i915#12454 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> > / i915#12712 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> > (i915#12454 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> > / i915#12712 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712>) > * > > igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-y-rc-ccs-cc: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-y-rc-ccs-cc.html> > (i915#8709 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) > +2 other tests skip > * > > igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs.html> > (i915#8709 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) > +15 other tests skip > * > > igt@kms_atomic@plane-primary-overlay-mutable-zpos: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> > (i915#9531 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-16/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> > (i915#9531 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> > (i915#9531 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>) > * > > igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> > (i915#1769 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_big_fb@4-tiled-addfb: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html> > (i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > +3 other tests skip > * > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> > (i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > +3 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> > (i915#4538 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> > / i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > * > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> > (i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > * > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> > (i915#5138 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>) > * > > igt@kms_big_fb@linear-32bpp-rotate-90: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-12/igt@kms_big_fb@linear-32bpp-rotate-90.html> > (i915#3638 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) > +1 other test skip > * > > igt@kms_big_fb@x-tiled-64bpp-rotate-270: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html> > +5 other tests skip > * > > igt@kms_big_fb@y-tiled-32bpp-rotate-180: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> > +17 other tests skip > * > > igt@kms_big_fb@y-tiled-64bpp-rotate-270: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html> > (i915#3638 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) > +3 other tests skip > * > > igt@kms_big_fb@y-tiled-8bpp-rotate-180: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html> > (i915#4538 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> > / i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > +12 other tests skip > * > > igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> > (i915#4538 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> > / i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > +7 other tests skip > * > > igt@kms_big_fb@yf-tiled-8bpp-rotate-0: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-19/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html> > (i915#4538 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>) > +2 other tests skip > * > > igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> > (i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > * > > igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html> > (i915#10307 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> > / i915#10434 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +3 other tests skip > * > > igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +44 other tests skip > * > > igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-13/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> > (i915#12313 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) > * > > igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +9 other tests skip > * > > igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +110 other tests skip > * > > igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html> > (i915#10307 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +177 other tests skip > * > > igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html> > (i915#12313 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) > +1 other test skip > * > > igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-4: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-4.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +16 other tests skip > * > > igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +4 other tests skip > * > > igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html> > (i915#12796 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796>) > +1 other test incomplete > * > > igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: > > o shard-rkl: NOTRUN -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html> > (i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > +1 other test dmesg-fail > * > > igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +96 other tests skip > * > > igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +84 other tests skip > * > > igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html> > (i915#12313 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html> > (i915#12313 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) > +1 other test skip > * > > igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-2: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-2.html> > (i915#10307 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +44 other tests skip > * > > igt@kms_cdclk@mode-transition-all-outputs: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-13/igt@kms_cdclk@mode-transition-all-outputs.html> > (i915#3742 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-5/igt@kms_cdclk@mode-transition-all-outputs.html> > (i915#3742 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@kms_cdclk@mode-transition-all-outputs.html> > (i915#13784 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-8/igt@kms_cdclk@mode-transition-all-outputs.html> > (i915#13784 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html> > (i915#3742 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) > * > > igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html> > (i915#13781 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781>) > +4 other tests skip > * > > igt@kms_chamelium_audio@hdmi-audio-edid: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-15/igt@kms_chamelium_audio@hdmi-audio-edid.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +4 other tests skip > * > > igt@kms_chamelium_edid@hdmi-mode-timings: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_chamelium_edid@hdmi-mode-timings.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +7 other tests skip > * > > igt@kms_chamelium_frames@hdmi-crc-fast: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_chamelium_frames@hdmi-crc-fast.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +8 other tests skip > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-fast.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > * > > igt@kms_chamelium_hpd@common-hpd-after-suspend: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +4 other tests skip > * > > igt@kms_chamelium_hpd@hdmi-hpd-fast: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-fast.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +8 other tests skip > * > > igt@kms_chamelium_hpd@hdmi-hpd-storm: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_chamelium_hpd@hdmi-hpd-storm.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +6 other tests skip > * > > igt@kms_content_protection@atomic@pipe-a-dp-3: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-3.html> > (i915#7173 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) > * > > igt@kms_content_protection@dp-mst-lic-type-1: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-1.html> > (i915#3299 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>) > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-1.html> > (i915#3116 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116> > / i915#3299 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>) > * > > igt@kms_content_protection@lic-type-1: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@kms_content_protection@lic-type-1.html> > (i915#9424 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > * > > igt@kms_content_protection@uevent: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@kms_content_protection@uevent.html> > (i915#6944 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> > / i915#9424 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_content_protection@uevent.html> > (i915#7118 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> > / i915#9424 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > +1 other test skip > * > > igt@kms_cursor_crc@cursor-offscreen-64x21: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-64x21.html> > (i915#8814 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814>) > +1 other test skip > * > > igt@kms_cursor_crc@cursor-onscreen-128x42: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html> > (i915#13566 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) > +2 other tests fail > * > > igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1: > > o shard-rkl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html> > (i915#13566 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) > +3 other tests fail > * > > igt@kms_cursor_crc@cursor-onscreen-32x10: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-32x10.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8814 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814>) > +1 other test skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-32x10.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +2 other tests skip > * > > igt@kms_cursor_crc@cursor-onscreen-512x512: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html> > (i915#13049 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > +2 other tests skip > * > > igt@kms_cursor_crc@cursor-random-512x512: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html> > (i915#13049 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > +1 other test skip > * > > igt@kms_cursor_crc@cursor-rapid-movement-32x32: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +6 other tests skip > * > > igt@kms_cursor_crc@cursor-rapid-movement-max-size: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +3 other tests skip > * > > igt@kms_cursor_crc@cursor-sliding-256x85: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-256x85.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-256x85.html> > (i915#13566 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) > +1 other test fail > * > > igt@kms_cursor_crc@cursor-sliding-512x512: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html> > (i915#13049 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > * > > igt@kms_cursor_crc@cursor-suspend: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk7/igt@kms_cursor_crc@cursor-suspend.html> > (i915#12358 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358> > / i915#7882 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882>) > * > > igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk7/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html> > (i915#12358 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358>) > * > > igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html> > (i915#9809 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809>) > +4 other tests skip > * > > igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> > +28 other tests skip > * > > igt@kms_cursor_legacy@cursora-vs-flipb-atomic: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html> > (i915#13046 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> > / i915#5354 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > +1 other test skip > * > > igt@kms_cursor_legacy@cursora-vs-flipb-toggle: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html> > (i915#13046 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> > / i915#5354 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > +6 other tests skip > * > > igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> > (i915#4103 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> > / i915#4213 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) > * > > igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> > (i915#4103 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> > (i915#4213 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> > (i915#4103 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> > / i915#4213 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> > (i915#4103 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> > (i915#4103 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> > / i915#4213 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) > * > > igt@kms_dirtyfb@drrs-dirtyfb-ioctl: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> > (i915#9833 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833>) > * > > igt@kms_dirtyfb@psr-dirtyfb-ioctl: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> > (i915#9833 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833>) > * > > igt@kms_dp_aux_dev: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_dp_aux_dev.html> > (i915#1257 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) > * > > igt@kms_dp_link_training@non-uhbr-sst: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-9/igt@kms_dp_link_training@non-uhbr-sst.html> > (i915#13749 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>) > * > > igt@kms_dp_link_training@uhbr-mst: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_dp_link_training@uhbr-mst.html> > (i915#13748 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>) > * > > igt@kms_dsc@dsc-with-bpc: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#3840 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) > * > > igt@kms_dsc@dsc-with-bpc-formats: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_dsc@dsc-with-bpc-formats.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#3840 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) > * > > igt@kms_dsc@dsc-with-output-formats-with-bpc: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> > (i915#3840 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> > / i915#9053 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053>) > * > > igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html> > (i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > +1 other test skip > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html> > (i915#13798 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13798>) > * > > igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-12/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html> > (i915#13798 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13798>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html> > (i915#13798 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13798>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html> > (i915#13798 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13798>) > * > > igt@kms_feature_discovery@display-2x: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-2/igt@kms_feature_discovery@display-2x.html> > (i915#1839 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_feature_discovery@display-2x.html> > (i915#1839 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_feature_discovery@display-2x.html> > (i915#1839 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-16/igt@kms_feature_discovery@display-2x.html> > (i915#1839 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-3/igt@kms_feature_discovery@display-2x.html> > (i915#1839 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) > * > > igt@kms_feature_discovery@dp-mst: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_feature_discovery@dp-mst.html> > (i915#9337 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337>) > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html> > (i915#9337 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337>) > * > > igt@kms_feature_discovery@psr1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-8/igt@kms_feature_discovery@psr1.html> > (i915#658 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-3/igt@kms_feature_discovery@psr1.html> > (i915#658 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) > +1 other test skip > * > > igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html> > (i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > +2 other tests skip > * > > igt@kms_flip@2x-flip-vs-fences-interruptible: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html> > (i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > +6 other tests skip > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html> > (i915#3637 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences-interruptible.html> > (i915#8381 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html> > (i915#8381 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html> > (i915#8381 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>) > * > > igt@kms_flip@2x-flip-vs-panning-vs-hang: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> > (i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > +6 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-16/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> > (i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > +1 other test skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> > (i915#3637 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) > +1 other test skip > * > > igt@kms_flip@2x-flip-vs-suspend-interruptible: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> > (i915#12745 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745> > / i915#4839 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>) > * > > igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html> > (i915#4839 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>) > * > > igt@kms_flip@2x-plain-flip-fb-recreate: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_flip@2x-plain-flip-fb-recreate.html> > (i915#3637 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) > +5 other tests skip > * > > igt@kms_flip@absolute-wf_vblank-interruptible: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-4/igt@kms_flip@absolute-wf_vblank-interruptible.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@kms_flip@absolute-wf_vblank-interruptible.html> > (i915#12917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> > / i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > +3 other tests dmesg-warn > * > > igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a2: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a2.html> > (i915#13734 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734>) > * > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8813 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>) > +4 other tests skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +3 other tests skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) > +3 other tests skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) > +3 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html> > (i915#2587 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> > / i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) > +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +2 other tests skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +3 other tests skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#8813 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>) > +2 other tests skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html> > (i915#2587 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> > / i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html> > (i915#2587 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> > / i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) > +4 other tests skip > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html> > (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) > * > > igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html> > (i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > +14 other tests dmesg-warn > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html> > (i915#5354 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > +32 other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html> > (i915#8708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) > +9 other tests skip > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html> > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html> > (i915#5354 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > +18 other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html> > (i915#1825 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) > +48 other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-stridechange: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-stridechange.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-stridechange.html> > (i915#6880 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>) > +2 other tests fail > * > > igt@kms_frontbuffer_tracking@fbc-tiling-y: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html> > (i915#10055 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html> > (i915#10055 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055>) > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt.html> > (i915#8708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) > +20 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html> > (i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > +4 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html> > (i915#8708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) > +4 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html> > +97 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html> > +28 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html> > (i915#3023 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) > +23 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html> > (i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > +14 other tests skip > * > > igt@kms_frontbuffer_tracking@pipe-fbc-rte: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> > (i915#9766 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>) > * > > igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html> > (i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > +14 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html> > (i915#10433 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> > / i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html> > +8 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html> > (i915#1825 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) > +23 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html> > (i915#8708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) > +11 other tests skip > * > > igt@kms_getfb@getfb-reject-ccs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_getfb@getfb-reject-ccs.html> > (i915#6118 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118>) > * > > igt@kms_hdr@bpc-switch-suspend: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_hdr@bpc-switch-suspend.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8228 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-8/igt@kms_hdr@bpc-switch-suspend.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8228 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > * > > igt@kms_hdr@static-swap: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-10/igt@kms_hdr@static-swap.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@kms_hdr@static-swap.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8228 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > +1 other test skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@kms_hdr@static-swap.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8228 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > +1 other test skip > * > > igt@kms_hdr@static-toggle: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_hdr@static-toggle.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8228 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > * > > igt@kms_joiner@basic-big-joiner: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_joiner@basic-big-joiner.html> > (i915#10656 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) > +1 other test skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-2/igt@kms_joiner@basic-big-joiner.html> > (i915#10656 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) > +1 other test skip > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_joiner@basic-big-joiner.html> > (i915#10656 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) > * > > igt@kms_joiner@basic-force-big-joiner: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_joiner@basic-force-big-joiner.html> > (i915#12388 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388>) > * > > igt@kms_joiner@basic-max-non-joiner: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-8/igt@kms_joiner@basic-max-non-joiner.html> > (i915#13688 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-7/igt@kms_joiner@basic-max-non-joiner.html> > (i915#13688 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-3/igt@kms_joiner@basic-max-non-joiner.html> > (i915#13688 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@kms_joiner@basic-max-non-joiner.html> > (i915#13688 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-17/igt@kms_joiner@basic-max-non-joiner.html> > (i915#13688 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688>) > * > > igt@kms_joiner@invalid-modeset-big-joiner: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-12/igt@kms_joiner@invalid-modeset-big-joiner.html> > (i915#10656 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-7/igt@kms_joiner@invalid-modeset-big-joiner.html> > (i915#10656 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@kms_joiner@invalid-modeset-big-joiner.html> > (i915#10656 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) > * > > igt@kms_joiner@invalid-modeset-force-ultra-joiner: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-9/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> > (i915#12394 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394>) > * > > igt@kms_multipipe_modeset@basic-max-pipe-crc-check: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> > (i915#4816 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816>) > * > > igt@kms_panel_fitting@legacy: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_panel_fitting@legacy.html> > (i915#6301 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>) > * > > igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html> > +13 other tests skip > * > > igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html> > (i915#13409 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409> > / i915#13476 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476>) > * > > igt@kms_plane_alpha_blend@alpha-opaque-fb: > > o shard-glk: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb.html> > (i915#10647 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647> > / i915#12169 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169>) > * > > igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: > > o shard-glk: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html> > (i915#10647 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>) > +1 other test fail > * > > igt@kms_plane_lowres@tiling-y: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_plane_lowres@tiling-y.html> > (i915#8821 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821>) > * > > igt@kms_plane_multiple@tiling-yf: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-3/igt@kms_plane_multiple@tiling-yf.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8806 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806>) > * > > igt@kms_plane_scaling@intel-max-src-size: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_plane_scaling@intel-max-src-size.html> > (i915#6953 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> > / i915#9423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) > * > > igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +7 other tests skip > * > > igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) > +6 other tests skip > * > > igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) > +4 other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> > / i915#6953 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> > / i915#9423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> > / i915#9423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) > +7 other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> > / i915#6953 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) > * > > igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> > / i915#6953 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) > * > > igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) > +3 other tests skip > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> > / i915#6953 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> > / i915#9423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html> > (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) > +3 other tests skip > * > > igt@kms_pm_dc@dc5-psr: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-5/igt@kms_pm_dc@dc5-psr.html> > (i915#9685 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) > * > > igt@kms_pm_dc@dc6-dpms: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_pm_dc@dc6-dpms.html> > (i915#5978 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978>) > * > > igt@kms_pm_lpsp@screens-disabled: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html> > (i915#8430 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@kms_pm_lpsp@screens-disabled.html> > (i915#8430 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-6/igt@kms_pm_lpsp@screens-disabled.html> > (i915#8430 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_pm_lpsp@screens-disabled.html> > (i915#8430 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430>) > * > > igt@kms_pm_rpm@dpms-non-lpsp: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-8/igt@kms_pm_rpm@dpms-non-lpsp.html> > (i915#9519 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) > +1 other test skip > * > > igt@kms_pm_rpm@fences-dpms: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@kms_pm_rpm@fences-dpms.html> > (i915#4077 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > +8 other tests skip > * > > igt@kms_pm_rpm@modeset-non-lpsp: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html> > (i915#9519 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) > * > > igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> > (i915#9519 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) > * > > igt@kms_prime@basic-crc-hybrid: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@kms_prime@basic-crc-hybrid.html> > (i915#6524 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-3/igt@kms_prime@basic-crc-hybrid.html> > (i915#6524 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) > * > > igt@kms_prime@basic-crc-vgem: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-10/igt@kms_prime@basic-crc-vgem.html> > (i915#6524 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524> > / i915#6805 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805>) > * > > igt@kms_prime@d3hot: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_prime@d3hot.html> > (i915#6524 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524> > / i915#6805 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805>) > * > > igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +8 other tests skip > * > > igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +6 other tests skip > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +3 other tests skip > * > > igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +12 other tests skip > * > > igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html> > (i915#12316 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316>) > +5 other tests skip > * > > igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +11 other tests skip > * > > igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html> > (i915#9808 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808>) > * > > igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > * > > igt@kms_psr2_sf@psr2-cursor-plane-update-sf: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +5 other tests skip > * > > igt@kms_psr2_su@page_flip-nv12: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_psr2_su@page_flip-nv12.html> > (i915#9683 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_psr2_su@page_flip-nv12.html> > (i915#9683 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > * > > igt@kms_psr2_su@page_flip-xrgb8888: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-6/igt@kms_psr2_su@page_flip-xrgb8888.html> > (i915#4348 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348>) > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_psr2_su@page_flip-xrgb8888.html> > (i915#9683 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-15/igt@kms_psr2_su@page_flip-xrgb8888.html> > (i915#9683 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > +1 other test skip > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_psr2_su@page_flip-xrgb8888.html> > (i915#9683 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > +1 other test skip > * > > igt@kms_psr@fbc-psr-cursor-plane-move: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_psr@fbc-psr-cursor-plane-move.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +13 other tests skip > * > > igt@kms_psr@fbc-psr-primary-mmap-gtt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +26 other tests skip > * > > igt@kms_psr@fbc-psr-primary-render: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-1/igt@kms_psr@fbc-psr-primary-render.html> > (i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +2 other tests skip > * > > igt@kms_psr@fbc-psr-sprite-plane-move: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_psr@fbc-psr-sprite-plane-move.html> > (i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +26 other tests skip > * > > igt@kms_psr@fbc-psr2-sprite-mmap-gtt: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-19/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +11 other tests skip > * > > igt@kms_psr@fbc-psr2-sprite-mmap-gtt@edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@kms_psr@fbc-psr2-sprite-mmap-gtt@edp-1.html> > (i915#9688 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) > +16 other tests skip > * > > igt@kms_psr@psr2-cursor-mmap-gtt: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_psr@psr2-cursor-mmap-gtt.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +23 other tests skip > * > > igt@kms_psr@psr2-sprite-plane-onoff: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk1/igt@kms_psr@psr2-sprite-plane-onoff.html> > +411 other tests skip > * > > igt@kms_psr_stress_test@flip-primary-invalidate-overlay: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> > (i915#9685 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) > * > > igt@kms_rotation_crc@bad-pixel-format: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@kms_rotation_crc@bad-pixel-format.html> > (i915#12755 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>) > * > > igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-16/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html> > (i915#5289 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) > * > > igt@kms_rotation_crc@primary-rotation-270: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-270.html> > (i915#12755 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>) > +1 other test skip > * > > igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> > (i915#12755 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755> > / i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> > (i915#5289 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> > (i915#5289 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) > * > > igt@kms_rotation_crc@sprite-rotation-270: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_rotation_crc@sprite-rotation-270.html> > (i915#12755 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>) > +1 other test skip > * > > igt@kms_scaling_modes@scaling-mode-full-aspect: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +6 other tests skip > * > > igt@kms_selftest@drm_framebuffer: > > o shard-rkl: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@kms_selftest@drm_framebuffer.html> > (i915#13179 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179>) > +1 other test abort > o shard-glk: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk8/igt@kms_selftest@drm_framebuffer.html> > (i915#13179 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179>) > +1 other test abort > * > > igt@kms_universal_plane@universal-plane-pageflip-windowed: > > o shard-dg1: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-17/igt@kms_universal_plane@universal-plane-pageflip-windowed.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-17/igt@kms_universal_plane@universal-plane-pageflip-windowed.html> > (i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) > +4 other tests dmesg-warn > * > > igt@kms_vrr@flip-basic-fastset: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_vrr@flip-basic-fastset.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > +1 other test skip > * > > igt@kms_vrr@flipline: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@kms_vrr@flipline.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8808 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) > +1 other test skip > * > > igt@kms_vrr@lobf: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@kms_vrr@lobf.html> > (i915#11920 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920>) > * > > igt@kms_vrr@max-min: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-18/igt@kms_vrr@max-min.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-6/igt@kms_vrr@max-min.html> > (i915#8808 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808> > / i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_vrr@max-min.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > * > > igt@kms_vrr@seamless-rr-switch-virtual: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-3/igt@kms_vrr@seamless-rr-switch-virtual.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > * > > igt@kms_vrr@seamless-rr-switch-vrr: > > o shard-dg2-9: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-vrr.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > * > > igt@kms_writeback@writeback-check-output: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_writeback@writeback-check-output.html> > (i915#2437 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) > +1 other test skip > * > > igt@kms_writeback@writeback-check-output-xrgb2101010: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html> > (i915#2437 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> > / i915#9412 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@kms_writeback@writeback-check-output-xrgb2101010.html> > (i915#2437 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> > / i915#9412 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) > * > > igt@kms_writeback@writeback-pixel-formats: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk8/igt@kms_writeback@writeback-pixel-formats.html> > (i915#2437 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@kms_writeback@writeback-pixel-formats.html> > (i915#2437 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> > / i915#9412 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) > * > > igt@perf@global-sseu-config-invalid: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@perf@global-sseu-config-invalid.html> > (i915#7387 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387>) > * > > igt@perf_pmu@invalid-init: > > o shard-rkl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@perf_pmu@invalid-init.html> > (i915#13663 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13663>) > * > > igt@perf_pmu@rc6-all-gts: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-5/igt@perf_pmu@rc6-all-gts.html> > (i915#8516 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>) > * > > igt@prime_vgem@basic-write: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@prime_vgem@basic-write.html> > (i915#3291 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> > / i915#3708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@prime_vgem@basic-write.html> > (i915#3291 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> > / i915#3708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-17/igt@prime_vgem@basic-write.html> > (i915#3708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > +1 other test skip > * > > igt@prime_vgem@coherency-gtt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-3/igt@prime_vgem@coherency-gtt.html> > (i915#3708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708> > / i915#4077 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > * > > igt@prime_vgem@fence-write-hang: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-7/igt@prime_vgem@fence-write-hang.html> > (i915#3708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-3/igt@prime_vgem@fence-write-hang.html> > (i915#3708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > +1 other test skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@prime_vgem@fence-write-hang.html> > (i915#3708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > * > > igt@sriov_basic@bind-unbind-vf: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-6/igt@sriov_basic@bind-unbind-vf.html> > (i915#9917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) > +1 other test skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@sriov_basic@bind-unbind-vf.html> > (i915#9917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) > +2 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-12/igt@sriov_basic@bind-unbind-vf.html> > (i915#9917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) > * > > igt@sriov_basic@bind-unbind-vf@vf-4: > > o shard-tglu: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-3/igt@sriov_basic@bind-unbind-vf@vf-4.html> > (i915#12910 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910>) > +19 other tests fail > * > > igt@sriov_basic@bind-unbind-vf@vf-5: > > o shard-mtlp: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-5/igt@sriov_basic@bind-unbind-vf@vf-5.html> > (i915#12910 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910>) > +9 other tests fail > * > > igt@tools_test@sysfs_l3_parity: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-1/igt@tools_test@sysfs_l3_parity.html> > (i915#4818 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818>) > > > Possible fixes > > * > > igt@gem_eio@kms: > > o shard-rkl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-8/igt@gem_eio@kms.html> > (i915#13363 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@gem_eio@kms.html> > * > > igt@gem_eio@suspend: > > o shard-mtlp: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-7/igt@gem_eio@suspend.html> > (i915#13193 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-7/igt@gem_eio@suspend.html> > * > > igt@gem_pxp@create-valid-protected-context: > > o shard-rkl: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-4/igt@gem_pxp@create-valid-protected-context.html> > (i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html> > * > > igt@gem_pxp@reject-modify-context-protection-off-3: > > o shard-rkl: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-off-3.html> > (i915#12917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> > / i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-3.html> > * > > igt@i915_module_load@reload-with-fault-injection: > > o shard-dg1: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html> > (i915#9820 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html> > * > > igt@i915_pm_rc6_residency@rc6-accuracy: > > o shard-dg2: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-4/igt@i915_pm_rc6_residency@rc6-accuracy.html> > (i915#12942 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-8/igt@i915_pm_rc6_residency@rc6-accuracy.html> > +1 other test pass > * > > igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: > > o shard-dg1: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html> > (i915#3591 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html> > +2 other tests pass > * > > igt@i915_selftest@live: > > o shard-rkl: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-6/igt@i915_selftest@live.html> > (i915#13550 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13550>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@i915_selftest@live.html> > +1 other test pass > * > > igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3: > > o shard-dg2: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html> > (i915#5956 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html> > +1 other test pass > * > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> > (i915#5138 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> > * > > igt@kms_cursor_crc@cursor-random-128x42: > > o shard-dg1: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-14/igt@kms_cursor_crc@cursor-random-128x42.html> > (i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-12/igt@kms_cursor_crc@cursor-random-128x42.html> > +8 other tests pass > * > > igt@kms_cursor_crc@cursor-sliding-128x42: > > o shard-tglu: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x42.html> > (i915#13566 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-128x42.html> > +5 other tests pass > * > > igt@kms_cursor_crc@cursor-sliding-64x21: > > o shard-rkl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-64x21.html> > (i915#13566 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21.html> > +3 other tests pass > * > > igt@kms_flip@2x-wf_vblank-ts-check-interruptible: > > o shard-snb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html> > (i915#11832 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832> > / i915#13734 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html> > * > > igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1: > > o shard-snb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html> > (i915#11832 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html> > * > > igt@kms_flip@flip-vs-fences@a-hdmi-a1: > > o shard-snb: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-snb6/igt@kms_flip@flip-vs-fences@a-hdmi-a1.html> > (i915#12314 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb7/igt@kms_flip@flip-vs-fences@a-hdmi-a1.html> > +1 other test pass > * > > igt@kms_flip@plain-flip-fb-recreate: > > o shard-tglu: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate.html> > (i915#11832 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_flip@plain-flip-fb-recreate.html> > * > > igt@kms_flip@plain-flip-fb-recreate@a-edp1: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-2/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html> > +2 other tests pass > * > > igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1: > > o shard-tglu: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-tglu-6/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1.html> > +3 other tests pass > * > > igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: > > o shard-glk: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html> > (i915#12756 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-glk7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html> > * > > igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> > (i915#9519 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> > +1 other test pass > * > > igt@kms_pm_rpm@modeset-non-lpsp-stress: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> > (i915#9519 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> > +1 other test pass > * > > igt@kms_psr@psr2-cursor-mmap-gtt@edp-1: > > o shard-mtlp: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-2/igt@kms_psr@psr2-cursor-mmap-gtt@edp-1.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-6/igt@kms_psr@psr2-cursor-mmap-gtt@edp-1.html> > +1 other test pass > * > > igt@kms_psr@psr2-primary-mmap-cpu: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-4/igt@kms_psr@psr2-primary-mmap-cpu.html> > (i915#13509 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13509>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-4/igt@kms_psr@psr2-primary-mmap-cpu.html> > +1 other test pass > * > > igt@kms_vblank@ts-continuation-dpms-suspend: > > o shard-snb: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-snb5/igt@kms_vblank@ts-continuation-dpms-suspend.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb5/igt@kms_vblank@ts-continuation-dpms-suspend.html> > +1 other test pass > * > > igt@perf@gen12-oa-tlb-invalidate: > > o shard-rkl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-6/igt@perf@gen12-oa-tlb-invalidate.html> > (i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@perf@gen12-oa-tlb-invalidate.html> > +13 other tests pass > * > > igt@perf_pmu@busy-double-start@vecs0: > > o shard-dg1: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-13/igt@perf_pmu@busy-double-start@vecs0.html> > (i915#4349 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-17/igt@perf_pmu@busy-double-start@vecs0.html> > +3 other tests pass > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-6/igt@perf_pmu@busy-double-start@vecs0.html> > (i915#4349 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-7/igt@perf_pmu@busy-double-start@vecs0.html> > +1 other test pass > * > > igt@perf_pmu@module-unload: > > o shard-snb: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-snb5/igt@perf_pmu@module-unload.html> > (i915#11703 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-snb6/igt@perf_pmu@module-unload.html> > o shard-dg2: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-1/igt@perf_pmu@module-unload.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@perf_pmu@module-unload.html> > * > > igt@perf_pmu@most-busy-idle-check-all@rcs0: > > o shard-rkl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html> > (i915#4349 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html> > +1 other test pass > > > Warnings > > * > > igt@gem_eio@hibernate: > > o shard-dg1: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-12/igt@gem_eio@hibernate.html> > (i915#7975 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975>) > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-12/igt@gem_eio@hibernate.html> > (i915#4391 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391> > / i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> > / i915#7975 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975>) > * > > igt@gem_pxp@display-protected-crc: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-8/igt@gem_pxp@display-protected-crc.html> > (i915#4270 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) > -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-4/igt@gem_pxp@display-protected-crc.html> > (i915#12917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> > / i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > +1 other test timeout > * > > igt@gem_pxp@hw-rejects-pxp-context: > > o shard-rkl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-1/igt@gem_pxp@hw-rejects-pxp-context.html> > (i915#13811 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13811>) > -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html> > (i915#12917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> > / i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > * > > igt@gem_pxp@protected-encrypted-src-copy-not-readible: > > o shard-rkl: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-4/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html> > (i915#12917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> > / i915#12964 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html> > (i915#4270 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) > +1 other test skip > * > > igt@kms_content_protection@atomic: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-6/igt@kms_content_protection@atomic.html> > (i915#7118 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> > / i915#9424 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-11/igt@kms_content_protection@atomic.html> > (i915#7173 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) > * > > igt@kms_content_protection@dp-mst-lic-type-0: > > o shard-dg1: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-12/igt@kms_content_protection@dp-mst-lic-type-0.html> > (i915#3299 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-0.html> > (i915#3299 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299> > / i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) > * > > igt@kms_content_protection@legacy: > > o shard-dg2: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-10/igt@kms_content_protection@legacy.html> > (i915#7173 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-2/igt@kms_content_protection@legacy.html> > (i915#7118 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> > / i915#9424 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > * > > igt@kms_content_protection@lic-type-0: > > o shard-dg2: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-11/igt@kms_content_protection@lic-type-0.html> > (i915#7173 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-1/igt@kms_content_protection@lic-type-0.html> > (i915#9424 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > * > > igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: > > o shard-mtlp: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html> > (i915#8810 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8810 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810> > / i915#8813 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>) > * > > igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: > > o shard-mtlp: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html> > (i915#8810 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8810 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810>) > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html> > (i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html> > (i915#10433 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> > / i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > +2 other tests skip > * > > igt@kms_hdr@brightness-with-hdr: > > o shard-dg1: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html> > (i915#1187 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187> > / i915#12713 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-16/igt@kms_hdr@brightness-with-hdr.html> > (i915#12713 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) > * > > igt@kms_pm_lpsp@kms-lpsp: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html> > (i915#9340 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html> > (i915#3828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) > * > > igt@kms_psr@psr-cursor-mmap-gtt: > > o shard-dg1: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-12/igt@kms_psr@psr-cursor-mmap-gtt.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-13/igt@kms_psr@psr-cursor-mmap-gtt.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > * > > igt@kms_vrr@flip-basic-fastset: > > o shard-dg1: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16275/shard-dg1-14/igt@kms_vrr@flip-basic-fastset.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12759/shard-dg1-17/igt@kms_vrr@flip-basic-fastset.html> > (i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> > / i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_8273 -> IGTPW_12759 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_16275: 1476c293076865d6630fe197cb211ea76b40ceb2 @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_12759: 12759 > IGT_8273: 5d806121f1cfb38fe7cc4d528d81feb1c11274b1 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ > git://anongit.freedesktop.org/piglit > [-- Attachment #2: Type: text/html, Size: 209709 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.Full: success for tests/kms_addfb_basic: Split tests into subtest groups 2025-03-12 10:30 [PATCH i-g-t] tests/kms_addfb_basic: Split tests into subtest groups Karthik B S ` (3 preceding siblings ...) 2025-03-13 4:52 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-03-13 17:49 ` Patchwork 4 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-03-13 17:49 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100728 bytes --] == Series Details == Series: tests/kms_addfb_basic: Split tests into subtest groups URL : https://patchwork.freedesktop.org/series/146208/ State : success == Summary == CI Bug Log - changes from XEIGT_8273_full -> XEIGTPW_12759_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12759_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][1] ([Intel XE#1125]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-2/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#3157]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][3] ([Intel XE#2550] / [Intel XE#3767]) +15 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-434/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#873]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#873]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@kms_async_flips@invalid-async-flip.html * igt@kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#664]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-8/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#3279]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2370]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +4 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-8/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#3658]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407]) +7 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#316]) +4 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +22 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2328]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +15 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +15 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1467]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#607]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#607]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1477]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#2314] / [Intel XE#2894]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2191]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2191]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1512]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#367]) +4 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-435/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#367]) +6 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#367]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-8/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#787]) +208 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2669]) +7 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +16 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +20 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#3432]) +4 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#3432]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#455] / [Intel XE#787]) +50 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][37] ([Intel XE#2705] / [Intel XE#3113]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][38] ([Intel XE#3113]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][39] -> [INCOMPLETE][40] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][41] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#2907]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2652] / [Intel XE#787]) +35 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2325]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_chamelium_color@ctm-0-50.html - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#306]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@kms_chamelium_color@ctm-0-50.html - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#306]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-5/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#373]) +14 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-435/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#373]) +14 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2252]) +16 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_content_protection@dp-mst-type-0: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2390]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_content_protection@dp-mst-type-0.html - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#307]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@kms_content_protection@dp-mst-type-0.html - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#307]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-8/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-bmg: NOTRUN -> [FAIL][53] ([Intel XE#1178]) +1 other test fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-8/igt@kms_content_protection@legacy.html - shard-dg2-set2: NOTRUN -> [FAIL][54] ([Intel XE#1178]) +1 other test fail [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-436/igt@kms_content_protection@legacy.html - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#3278]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@type1: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2341]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2321]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#308]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#2321]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2320]) +10 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1424]) +8 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-1/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#309]) +6 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2-set2: [PASS][63] -> [SKIP][64] ([Intel XE#309]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-435/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#323]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#2291]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2291]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#323]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2286]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#4210]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#4302]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#4302]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@uhbr-sst: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#4354]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@kms_dp_link_training@uhbr-sst.html - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#4356]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-466/igt@kms_dp_link_training@uhbr-sst.html - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#4354]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-1/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#2244]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-5/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2244]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-2/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#4422]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#4422]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-435/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#4422]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#4156]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_fbcon_fbt@fbc.html * igt@kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2372]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-8/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [PASS][84] -> [SKIP][85] ([Intel XE#2373]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-8/igt@kms_feature_discovery@display-2x.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2375]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-8/igt@kms_feature_discovery@dp-mst.html - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1137]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-436/igt@kms_feature_discovery@dp-mst.html - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1137]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-4/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2374]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-2/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-dg2-set2: [PASS][90] -> [SKIP][91] ([Intel XE#310]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-433/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-suspend: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1421]) +8 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-1/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#310]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2316]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [PASS][95] -> [SKIP][96] ([Intel XE#2316]) +5 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@kms_flip@2x-wf_vblank-ts-check.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@blocking-wf_vblank: - shard-bmg: [PASS][97] -> [FAIL][98] ([Intel XE#2882] / [Intel XE#3098]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@kms_flip@blocking-wf_vblank.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@a-dp2: - shard-bmg: [PASS][99] -> [FAIL][100] ([Intel XE#3098]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@kms_flip@blocking-wf_vblank@a-dp2.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_flip@blocking-wf_vblank@a-dp2.html * igt@kms_flip@blocking-wf_vblank@b-dp2: - shard-bmg: [PASS][101] -> [FAIL][102] ([Intel XE#2882]) +2 other tests fail [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@kms_flip@blocking-wf_vblank@b-dp2.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_flip@blocking-wf_vblank@b-dp2.html * igt@kms_flip@flip-vs-expired-vblank@a-dp4: - shard-dg2-set2: [PASS][103] -> [FAIL][104] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [PASS][105] -> [FAIL][106] ([Intel XE#886]) +2 other tests fail [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-6/igt@kms_flip@plain-flip-ts-check-interruptible.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-1/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1397] / [Intel XE#1745]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1401]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1401] / [Intel XE#1745]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1397]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2293]) +5 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-edid: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#352]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-7/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#651]) +19 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#656]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#651]) +33 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [PASS][117] -> [SKIP][118] ([Intel XE#656]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#4141]) +18 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2312]) +28 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2311]) +37 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#658]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1469]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2352]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#656]) +58 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2313]) +38 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#653]) +35 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2502]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@static-swap: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1503]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-1/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#346]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2934]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2925]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-463/igt@kms_joiner@basic-force-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2934]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-1/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#2927]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@kms_joiner@basic-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#2927]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][136] -> [SKIP][137] ([Intel XE#3012]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2501]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_lowres@tiling-4: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#599]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-7/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-none: - shard-dg2-set2: [PASS][140] -> [INCOMPLETE][141] ([Intel XE#4089] / [Intel XE#4091] / [Intel XE#4392]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@kms_plane_lowres@tiling-none.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-436/igt@kms_plane_lowres@tiling-none.html * igt@kms_plane_lowres@tiling-none@pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][142] -> [INCOMPLETE][143] ([Intel XE#4089] / [Intel XE#4392]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@kms_plane_lowres@tiling-none@pipe-b-hdmi-a-6.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-436/igt@kms_plane_lowres@tiling-none@pipe-b-hdmi-a-6.html * igt@kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#2493]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-4/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2571]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2763]) +8 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#2763]) +23 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2763]) +19 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#870]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-434/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2938]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-8/igt@kms_pm_backlight@brightness-with-dpms.html - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2938]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-436/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#870]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: NOTRUN -> [FAIL][154] ([Intel XE#718]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [PASS][155] -> [FAIL][156] ([Intel XE#718]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#1439] / [Intel XE#836]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#1439] / [Intel XE#3141]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#1489]) +13 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#1489]) +8 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#2893]) +5 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#1128]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#1122]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-434/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#2850] / [Intel XE#929]) +16 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr@pr-sprite-blt: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#1406]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-7/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#2234] / [Intel XE#2850]) +22 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#2414]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2330]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#1127]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#1127]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#3414] / [Intel XE#3904]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#3414]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html - shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#3414] / [Intel XE#3904]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none: - shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#2413]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-none.html - shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#2413] / [Intel XE#374]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#374]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_setmode@basic: - shard-bmg: NOTRUN -> [FAIL][177] ([Intel XE#2883]) +2 other tests fail [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_setmode@basic.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: [PASS][178] -> [SKIP][179] ([Intel XE#1435]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#1435]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#1435]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#330]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html - shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#330]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-1/igt@kms_tv_load_detect@load-detect.html - shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#2450]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#455]) +17 other tests skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-435/igt@kms_vrr@flipline.html * igt@kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#1499]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-8/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#1499]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#756]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-bmg: NOTRUN -> [SKIP][189] ([Intel XE#756]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_writeback@writeback-invalid-parameters.html - shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#756]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-463/igt@kms_writeback@writeback-invalid-parameters.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#1091] / [Intel XE#2849]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-8/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][192] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute@ccs-mode-basic: - shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#1447]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-7/igt@xe_compute@ccs-mode-basic.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][195] ([Intel XE#1123]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][196] ([Intel XE#1126]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_create@multigpu-create-massive-size: - shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#944]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-436/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eu_stall@unprivileged-access: - shard-dg2-set2: NOTRUN -> [SKIP][198] ([Intel XE#4497]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-435/igt@xe_eu_stall@unprivileged-access.html * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][199] ([Intel XE#2905] / [Intel XE#3889]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html - shard-bmg: NOTRUN -> [SKIP][200] ([Intel XE#2905] / [Intel XE#3889]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt@xe_eudebug@discovery-empty-clients: - shard-lnl: NOTRUN -> [SKIP][201] ([Intel XE#2905]) +14 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-7/igt@xe_eudebug@discovery-empty-clients.html * igt@xe_eudebug@discovery-race-sigint: - shard-bmg: NOTRUN -> [SKIP][202] ([Intel XE#2905] / [Intel XE#4259]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-2/igt@xe_eudebug@discovery-race-sigint.html - shard-dg2-set2: NOTRUN -> [SKIP][203] ([Intel XE#2905] / [Intel XE#4259]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-433/igt@xe_eudebug@discovery-race-sigint.html - shard-lnl: NOTRUN -> [SKIP][204] ([Intel XE#2905] / [Intel XE#4259]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-7/igt@xe_eudebug@discovery-race-sigint.html * igt@xe_eudebug_online@preempt-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][205] ([Intel XE#2905]) +13 other tests skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-434/igt@xe_eudebug_online@preempt-breakpoint.html * igt@xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> [SKIP][206] ([Intel XE#2905]) +18 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@xe_eudebug_online@single-step.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd: - shard-lnl: NOTRUN -> [SKIP][207] ([Intel XE#688]) +9 other tests skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-8/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-dg2-set2: NOTRUN -> [SKIP][208] ([Intel XE#1392]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap: - shard-dg2-set2: [PASS][209] -> [SKIP][210] ([Intel XE#1392]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind: - shard-bmg: NOTRUN -> [SKIP][211] ([Intel XE#2322]) +9 other tests skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][212] ([Intel XE#1392]) +9 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-4/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][213] ([Intel XE#288]) +29 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-lnl: NOTRUN -> [SKIP][214] ([Intel XE#2229]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-3/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][215] ([Intel XE#1999]) +2 other tests fail [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][216] ([Intel XE#560]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-435/igt@xe_media_fill@media-fill.html - shard-lnl: NOTRUN -> [SKIP][217] ([Intel XE#560]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-4/igt@xe_media_fill@media-fill.html * igt@xe_mmap@pci-membarrier: - shard-lnl: NOTRUN -> [SKIP][218] ([Intel XE#4045]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-7/igt@xe_mmap@pci-membarrier.html * igt@xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#512]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@xe_mmap@small-bar.html - shard-lnl: NOTRUN -> [SKIP][220] ([Intel XE#512]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@xe_mmap@small-bar.html * igt@xe_oa@missing-sample-flags: - shard-dg2-set2: NOTRUN -> [SKIP][221] ([Intel XE#2541] / [Intel XE#3573]) +9 other tests skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@xe_oa@missing-sample-flags.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][222] ([Intel XE#2427]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-mocs: - shard-bmg: NOTRUN -> [SKIP][223] ([Intel XE#2284]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3cold-multiple-execs: - shard-dg2-set2: NOTRUN -> [SKIP][224] ([Intel XE#2284] / [Intel XE#366]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-463/igt@xe_pm@d3cold-multiple-execs.html - shard-lnl: NOTRUN -> [SKIP][225] ([Intel XE#2284] / [Intel XE#366]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-3/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [SKIP][226] ([Intel XE#584]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-2/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pm@s4-multiple-execs: - shard-bmg: NOTRUN -> [ABORT][227] ([Intel XE#4268]) +1 other test abort [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@xe_pm@s4-multiple-execs.html - shard-dg2-set2: NOTRUN -> [ABORT][228] ([Intel XE#4268]) +1 other test abort [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-434/igt@xe_pm@s4-multiple-execs.html * igt@xe_query@multigpu-query-mem-usage: - shard-bmg: NOTRUN -> [SKIP][229] ([Intel XE#944]) +2 other tests skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-8/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][230] ([Intel XE#944]) +4 other tests skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-4/igt@xe_query@multigpu-query-topology-l3-bank-mask.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling: - shard-bmg: NOTRUN -> [SKIP][231] ([Intel XE#4130]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: NOTRUN -> [SKIP][232] ([Intel XE#3342]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: NOTRUN -> [SKIP][233] ([Intel XE#4273]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@xe_sriov_flr@flr-vfs-parallel.html - shard-lnl: NOTRUN -> [SKIP][234] ([Intel XE#4273]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-5/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_sriov_scheduling@equal-throughput: - shard-bmg: NOTRUN -> [SKIP][235] ([Intel XE#4351]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@xe_sriov_scheduling@equal-throughput.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [FAIL][236] ([Intel XE#911]) -> [PASS][237] +3 other tests pass [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][238] ([Intel XE#2191]) -> [PASS][239] +1 other test pass [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-dg2-set2: [SKIP][240] ([Intel XE#309]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [SKIP][242] ([Intel XE#2291]) -> [PASS][243] +4 other tests pass [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_feature_discovery@display-2x: - shard-dg2-set2: [SKIP][244] ([Intel XE#702]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_feature_discovery@display-2x.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-plain-flip: - shard-bmg: [SKIP][246] ([Intel XE#2316]) -> [PASS][247] +2 other tests pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@kms_flip@2x-plain-flip.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-dg2-set2: [SKIP][248] ([Intel XE#310]) -> [PASS][249] +2 other tests pass [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_flip@2x-plain-flip-fb-recreate.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-433/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@basic-flip-vs-wf_vblank: - shard-bmg: [FAIL][250] ([Intel XE#2882] / [Intel XE#3098]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@kms_flip@basic-flip-vs-wf_vblank.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-8/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2: - shard-bmg: [FAIL][252] ([Intel XE#3098]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-8/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2.html * igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2: - shard-bmg: [FAIL][254] ([Intel XE#2882]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-8/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4: - shard-dg2-set2: [FAIL][256] ([Intel XE#301]) -> [PASS][257] +5 other tests pass [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][258] ([Intel XE#656]) -> [PASS][259] +2 other tests pass [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [FAIL][260] ([Intel XE#616]) -> [PASS][261] +1 other test pass [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: [FAIL][262] -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@kms_pm_rpm@basic-pci-d3-state.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-463/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-dg2-set2: [SKIP][264] ([Intel XE#455]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_setmode@invalid-clone-single-crtc.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-433/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][266] ([Intel XE#1435]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-lnl: [FAIL][268] ([Intel XE#899]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_vrr@negative-basic: - shard-bmg: [SKIP][270] ([Intel XE#1499]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@kms_vrr@negative-basic.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_vrr@negative-basic.html * igt@testdisplay: - shard-dg2-set2: [ABORT][272] ([Intel XE#2705] / [Intel XE#4540]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@testdisplay.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@testdisplay.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-dg2-set2: [SKIP][274] ([Intel XE#1392]) -> [PASS][275] +2 other tests pass [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-436/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_module_load@load: - shard-lnl: ([PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [SKIP][298], [PASS][299], [PASS][300], [PASS][301]) ([Intel XE#378]) -> ([PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-5/igt@xe_module_load@load.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-6/igt@xe_module_load@load.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-1/igt@xe_module_load@load.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-3/igt@xe_module_load@load.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-8/igt@xe_module_load@load.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-7/igt@xe_module_load@load.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-7/igt@xe_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-6/igt@xe_module_load@load.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-6/igt@xe_module_load@load.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-6/igt@xe_module_load@load.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-4/igt@xe_module_load@load.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-4/igt@xe_module_load@load.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-1/igt@xe_module_load@load.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-4/igt@xe_module_load@load.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-1/igt@xe_module_load@load.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-3/igt@xe_module_load@load.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-3/igt@xe_module_load@load.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-4/igt@xe_module_load@load.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-8/igt@xe_module_load@load.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-8/igt@xe_module_load@load.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-7/igt@xe_module_load@load.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-5/igt@xe_module_load@load.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-3/igt@xe_module_load@load.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-2/igt@xe_module_load@load.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-2/igt@xe_module_load@load.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-5/igt@xe_module_load@load.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-8/igt@xe_module_load@load.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-2/igt@xe_module_load@load.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-8/igt@xe_module_load@load.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-8/igt@xe_module_load@load.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-8/igt@xe_module_load@load.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-3/igt@xe_module_load@load.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-2/igt@xe_module_load@load.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-1/igt@xe_module_load@load.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-1/igt@xe_module_load@load.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-4/igt@xe_module_load@load.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-1/igt@xe_module_load@load.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-3/igt@xe_module_load@load.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-4/igt@xe_module_load@load.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@xe_module_load@load.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@xe_module_load@load.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-3/igt@xe_module_load@load.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-7/igt@xe_module_load@load.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-4/igt@xe_module_load@load.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-5/igt@xe_module_load@load.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-5/igt@xe_module_load@load.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-5/igt@xe_module_load@load.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-7/igt@xe_module_load@load.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-7/igt@xe_module_load@load.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@xe_module_load@load.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-6/igt@xe_module_load@load.html - shard-bmg: ([PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [SKIP][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347]) ([Intel XE#2457]) -> ([PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-8/igt@xe_module_load@load.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-8/igt@xe_module_load@load.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-8/igt@xe_module_load@load.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@xe_module_load@load.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@xe_module_load@load.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@xe_module_load@load.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@xe_module_load@load.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@xe_module_load@load.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@xe_module_load@load.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@xe_module_load@load.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@xe_module_load@load.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@xe_module_load@load.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@xe_module_load@load.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@xe_module_load@load.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@xe_module_load@load.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@xe_module_load@load.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@xe_module_load@load.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@xe_module_load@load.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@xe_module_load@load.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@xe_module_load@load.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@xe_module_load@load.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@xe_module_load@load.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@xe_module_load@load.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@xe_module_load@load.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@xe_module_load@load.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@xe_module_load@load.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@xe_module_load@load.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@xe_module_load@load.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@xe_module_load@load.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@xe_module_load@load.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@xe_module_load@load.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@xe_module_load@load.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@xe_module_load@load.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-2/igt@xe_module_load@load.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-2/igt@xe_module_load@load.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-2/igt@xe_module_load@load.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@xe_module_load@load.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-8/igt@xe_module_load@load.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-8/igt@xe_module_load@load.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@xe_module_load@load.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-8/igt@xe_module_load@load.html - shard-dg2-set2: ([PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382], [PASS][383], [PASS][384], [PASS][385], [PASS][386], [SKIP][387], [PASS][388], [PASS][389], [PASS][390], [PASS][391], [PASS][392], [PASS][393]) ([Intel XE#378]) -> ([PASS][394], [PASS][395], [PASS][396], [PASS][397], [PASS][398], [PASS][399], [PASS][400], [PASS][401], [PASS][402], [PASS][403], [PASS][404], [PASS][405], [PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410], [PASS][411], [PASS][412], [PASS][413], [PASS][414], [PASS][415], [PASS][416], [PASS][417], [PASS][418]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-434/igt@xe_module_load@load.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@xe_module_load@load.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@xe_module_load@load.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-434/igt@xe_module_load@load.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@xe_module_load@load.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-435/igt@xe_module_load@load.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-435/igt@xe_module_load@load.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-435/igt@xe_module_load@load.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-433/igt@xe_module_load@load.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-433/igt@xe_module_load@load.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-436/igt@xe_module_load@load.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-432/igt@xe_module_load@load.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-434/igt@xe_module_load@load.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@xe_module_load@load.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@xe_module_load@load.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@xe_module_load@load.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-436/igt@xe_module_load@load.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-436/igt@xe_module_load@load.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-432/igt@xe_module_load@load.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@xe_module_load@load.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-432/igt@xe_module_load@load.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-433/igt@xe_module_load@load.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-436/igt@xe_module_load@load.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-463/igt@xe_module_load@load.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-463/igt@xe_module_load@load.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-435/igt@xe_module_load@load.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-463/igt@xe_module_load@load.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-463/igt@xe_module_load@load.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-434/igt@xe_module_load@load.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@xe_module_load@load.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@xe_module_load@load.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@xe_module_load@load.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@xe_module_load@load.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-434/igt@xe_module_load@load.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-466/igt@xe_module_load@load.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@xe_module_load@load.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@xe_module_load@load.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-436/igt@xe_module_load@load.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-436/igt@xe_module_load@load.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-434/igt@xe_module_load@load.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-434/igt@xe_module_load@load.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-466/igt@xe_module_load@load.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-466/igt@xe_module_load@load.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@xe_module_load@load.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-436/igt@xe_module_load@load.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-433/igt@xe_module_load@load.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-433/igt@xe_module_load@load.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-433/igt@xe_module_load@load.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-435/igt@xe_module_load@load.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-435/igt@xe_module_load@load.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-435/igt@xe_module_load@load.html * igt@xe_wedged@wedged-mode-toggle: - shard-lnl: [ABORT][419] ([Intel XE#3084]) -> [PASS][420] [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-4/igt@xe_wedged@wedged-mode-toggle.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-lnl-3/igt@xe_wedged@wedged-mode-toggle.html #### Warnings #### * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][421] ([Intel XE#787]) -> [SKIP][422] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][423] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][424] ([Intel XE#787]) +4 other tests skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_content_protection@atomic: - shard-dg2-set2: [FAIL][425] ([Intel XE#1178]) -> [SKIP][426] ([Intel XE#455]) [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@kms_content_protection@atomic.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@kms_content_protection@atomic.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][427] ([Intel XE#2312]) -> [SKIP][428] ([Intel XE#2311]) +7 other tests skip [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][429] ([Intel XE#651]) -> [SKIP][430] ([Intel XE#656]) +7 other tests skip [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][431] ([Intel XE#2311]) -> [SKIP][432] ([Intel XE#2312]) +6 other tests skip [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][433] ([Intel XE#2312]) -> [SKIP][434] ([Intel XE#4141]) +3 other tests skip [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][435] ([Intel XE#4141]) -> [SKIP][436] ([Intel XE#2312]) +3 other tests skip [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][437] ([Intel XE#656]) -> [SKIP][438] ([Intel XE#651]) +6 other tests skip [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][439] ([Intel XE#2313]) -> [SKIP][440] ([Intel XE#2312]) +6 other tests skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][441] ([Intel XE#2312]) -> [SKIP][442] ([Intel XE#2313]) +2 other tests skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][443] ([Intel XE#656]) -> [SKIP][444] ([Intel XE#653]) +3 other tests skip [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][445] ([Intel XE#653]) -> [SKIP][446] ([Intel XE#656]) +9 other tests skip [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html [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#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [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#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [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#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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [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#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [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#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4089]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4089 [Intel XE#4091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4091 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210 [Intel XE#4259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4259 [Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356 [Intel XE#4392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4392 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497 [Intel XE#4540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4540 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [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#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8273 -> IGTPW_12759 * Linux: xe-2806-e2e6ad67ea058d5b08490a2b3dab2152fcfcc24e -> xe-2807-1476c293076865d6630fe197cb211ea76b40ceb2 IGTPW_12759: 12759 IGT_8273: 5d806121f1cfb38fe7cc4d528d81feb1c11274b1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2806-e2e6ad67ea058d5b08490a2b3dab2152fcfcc24e: e2e6ad67ea058d5b08490a2b3dab2152fcfcc24e xe-2807-1476c293076865d6630fe197cb211ea76b40ceb2: 1476c293076865d6630fe197cb211ea76b40ceb2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12759/index.html [-- Attachment #2: Type: text/html, Size: 116490 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-03-26 4:37 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-03-12 10:30 [PATCH i-g-t] tests/kms_addfb_basic: Split tests into subtest groups Karthik B S 2025-03-12 20:43 ` Kamil Konieczny 2025-03-14 9:43 ` Karthik B S 2025-03-20 13:30 ` Kamil Konieczny 2025-03-20 14:09 ` Karthik B S 2025-03-25 7:38 ` Sharma, Swati2 2025-03-13 2:45 ` ✓ Xe.CI.BAT: success for " Patchwork 2025-03-13 3:01 ` ✓ i915.CI.BAT: " Patchwork 2025-03-13 4:52 ` ✗ i915.CI.Full: failure " Patchwork 2025-03-26 4:37 ` Karthik B S 2025-03-13 17:49 ` ✓ Xe.CI.Full: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox