* [PATCH i-g-t v2 0/1] Add test for configurable OA buffer size
@ 2025-01-16 13:54 Sai Teja Pottumuttu
2025-01-16 13:54 ` [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Extend non-zero-reason test Sai Teja Pottumuttu
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Sai Teja Pottumuttu @ 2025-01-16 13:54 UTC (permalink / raw)
To: igt-dev; +Cc: ashutosh.dixit, sai.teja.pottumuttu
The patch series extends an existing test non-zero-reason to use/test
configurable OA buffer size capability. It adds dynamic tests under
non-zero-reason test for 8,16,32MB OA buffer sizes.
Sai Teja Pottumuttu (1):
tests/intel/xe_oa: Extend non-zero-reason test
tests/intel/xe_oa.c | 30 +++++++++++++++++++++++++++---
1 file changed, 27 insertions(+), 3 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Extend non-zero-reason test
2025-01-16 13:54 [PATCH i-g-t v2 0/1] Add test for configurable OA buffer size Sai Teja Pottumuttu
@ 2025-01-16 13:54 ` Sai Teja Pottumuttu
2025-01-17 0:58 ` Dixit, Ashutosh
2025-01-17 4:00 ` ✓ Xe.CI.BAT: success for Add test for configurable OA buffer size (rev2) Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Sai Teja Pottumuttu @ 2025-01-16 13:54 UTC (permalink / raw)
To: igt-dev; +Cc: ashutosh.dixit, sai.teja.pottumuttu
Extend non-zero-reason test to use configurable OA buffer sizes and
execute the test for three different sizes 8,16 and 32MB.
Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
---
tests/intel/xe_oa.c | 30 +++++++++++++++++++++++++++---
1 file changed, 27 insertions(+), 3 deletions(-)
diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
index 492a6b5d6..f28156a66 100644
--- a/tests/intel/xe_oa.c
+++ b/tests/intel/xe_oa.c
@@ -2504,7 +2504,7 @@ again_1:
* Description: Test reason field is non-zero. Can also check OA buffer wraparound issues
*/
static void
-test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe)
+test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe, size_t oa_buffer_size)
{
/* ~20 micro second period */
int oa_exponent = max_oa_exponent_for_period_lte(20000);
@@ -2522,6 +2522,7 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe)
DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(fmt),
DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, oa_exponent,
DRM_XE_OA_PROPERTY_OA_ENGINE_INSTANCE, hwe->engine_instance,
+ DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, oa_buffer_size,
};
struct intel_xe_oa_open_prop param = {
.num_properties = ARRAY_SIZE(properties) / 2,
@@ -2541,6 +2542,9 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe)
load_helper_init();
load_helper_run(HIGH);
+ if (!oa_buffer_size)
+ param.num_properties = param.num_properties - 1;
+
stream_fd = __perf_open(drm_fd, ¶m, true /* prevent_pm */);
set_fd_flags(stream_fd, O_CLOEXEC);
@@ -4867,8 +4871,28 @@ igt_main
test_buffer_fill(hwe);
igt_subtest_with_dynamic("non-zero-reason") {
- __for_one_hwe_in_oag(hwe)
- test_non_zero_reason(hwe);
+ struct drm_xe_query_oa_units *qoa = xe_oa_units(drm_fd);
+ struct drm_xe_oa_unit *oau = (struct drm_xe_oa_unit *)&qoa->oa_units[0];
+
+ if (oau->capabilities & DRM_XE_OA_CAPS_OA_BUFFER_SIZE) {
+ hwe = oa_unit_engine(drm_fd, 0);
+ if (hwe) {
+ igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class),
+ hwe->engine_instance, "8MB")
+ test_non_zero_reason(hwe, SZ_8M);
+
+ igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class),
+ hwe->engine_instance, "16MB")
+ test_non_zero_reason(hwe, SZ_16M);
+
+ igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class),
+ hwe->engine_instance, "32MB")
+ test_non_zero_reason(hwe, SZ_32M);
+ }
+ } else {
+ __for_one_hwe_in_oag(hwe)
+ test_non_zero_reason(hwe, 0);
+ }
}
igt_subtest("disabled-read-error")
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Extend non-zero-reason test
2025-01-16 13:54 ` [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Extend non-zero-reason test Sai Teja Pottumuttu
@ 2025-01-17 0:58 ` Dixit, Ashutosh
2025-01-17 1:00 ` Dixit, Ashutosh
2025-01-21 14:22 ` Pottumuttu, Sai Teja
0 siblings, 2 replies; 9+ messages in thread
From: Dixit, Ashutosh @ 2025-01-17 0:58 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
On Thu, 16 Jan 2025 05:54:56 -0800, Sai Teja Pottumuttu wrote:
>
Hi Sai Teja,
> Extend non-zero-reason test to use configurable OA buffer sizes and
> execute the test for three different sizes 8,16 and 32MB.
I made a few changes to the patch and posted a v2. Please take a look. I
have tested these changes, so no need to test again.
A single patch generally doesn't need a cover letter.
I am seeing consistent failures with 32 MB OA buffer size (reason seems to
0 somehow) on Xe1. Did you see these failures on Xe2? So I think we should
drop the 32 MB size test.
Rest looks good and I have R-b'd the v2. If you like my changes you can R-b
v2 too :-)
Thanks.
--
Ashutosh
>
> Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
> ---
> tests/intel/xe_oa.c | 30 +++++++++++++++++++++++++++---
> 1 file changed, 27 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
> index 492a6b5d6..f28156a66 100644
> --- a/tests/intel/xe_oa.c
> +++ b/tests/intel/xe_oa.c
> @@ -2504,7 +2504,7 @@ again_1:
> * Description: Test reason field is non-zero. Can also check OA buffer wraparound issues
> */
> static void
> -test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe)
> +test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe, size_t oa_buffer_size)
> {
> /* ~20 micro second period */
> int oa_exponent = max_oa_exponent_for_period_lte(20000);
> @@ -2522,6 +2522,7 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe)
> DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(fmt),
> DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, oa_exponent,
> DRM_XE_OA_PROPERTY_OA_ENGINE_INSTANCE, hwe->engine_instance,
> + DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, oa_buffer_size,
> };
> struct intel_xe_oa_open_prop param = {
> .num_properties = ARRAY_SIZE(properties) / 2,
> @@ -2541,6 +2542,9 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe)
> load_helper_init();
> load_helper_run(HIGH);
>
> + if (!oa_buffer_size)
> + param.num_properties = param.num_properties - 1;
> +
> stream_fd = __perf_open(drm_fd, ¶m, true /* prevent_pm */);
> set_fd_flags(stream_fd, O_CLOEXEC);
>
> @@ -4867,8 +4871,28 @@ igt_main
> test_buffer_fill(hwe);
>
> igt_subtest_with_dynamic("non-zero-reason") {
> - __for_one_hwe_in_oag(hwe)
> - test_non_zero_reason(hwe);
> + struct drm_xe_query_oa_units *qoa = xe_oa_units(drm_fd);
> + struct drm_xe_oa_unit *oau = (struct drm_xe_oa_unit *)&qoa->oa_units[0];
> +
> + if (oau->capabilities & DRM_XE_OA_CAPS_OA_BUFFER_SIZE) {
> + hwe = oa_unit_engine(drm_fd, 0);
> + if (hwe) {
> + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class),
> + hwe->engine_instance, "8MB")
> + test_non_zero_reason(hwe, SZ_8M);
> +
> + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class),
> + hwe->engine_instance, "16MB")
> + test_non_zero_reason(hwe, SZ_16M);
> +
> + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class),
> + hwe->engine_instance, "32MB")
> + test_non_zero_reason(hwe, SZ_32M);
> + }
> + } else {
> + __for_one_hwe_in_oag(hwe)
> + test_non_zero_reason(hwe, 0);
> + }
> }
>
> igt_subtest("disabled-read-error")
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Extend non-zero-reason test
2025-01-17 0:58 ` Dixit, Ashutosh
@ 2025-01-17 1:00 ` Dixit, Ashutosh
2025-01-21 14:22 ` Pottumuttu, Sai Teja
1 sibling, 0 replies; 9+ messages in thread
From: Dixit, Ashutosh @ 2025-01-17 1:00 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
On Thu, 16 Jan 2025 16:58:31 -0800, Dixit, Ashutosh wrote:
>
> On Thu, 16 Jan 2025 05:54:56 -0800, Sai Teja Pottumuttu wrote:
> >
>
> Hi Sai Teja,
>
> > Extend non-zero-reason test to use configurable OA buffer sizes and
> > execute the test for three different sizes 8,16 and 32MB.
>
> I made a few changes to the patch and posted a v2. Please take a look. I
> have tested these changes, so no need to test again.
>
> A single patch generally doesn't need a cover letter.
>
> I am seeing consistent failures with 32 MB OA buffer size (reason seems to
> 0 somehow) on Xe1. Did you see these failures on Xe2? So I think we should
> drop the 32 MB size test.
>
> Rest looks good and I have R-b'd the v2. If you like my changes you can R-b
> v2 too :-)
v2 seems to have ended here:
https://patchwork.freedesktop.org/series/143640/
because I didn't include the cover letter. Sorry!
>
> Thanks.
> --
> Ashutosh
>
>
> >
> > Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
> > ---
> > tests/intel/xe_oa.c | 30 +++++++++++++++++++++++++++---
> > 1 file changed, 27 insertions(+), 3 deletions(-)
> >
> > diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
> > index 492a6b5d6..f28156a66 100644
> > --- a/tests/intel/xe_oa.c
> > +++ b/tests/intel/xe_oa.c
> > @@ -2504,7 +2504,7 @@ again_1:
> > * Description: Test reason field is non-zero. Can also check OA buffer wraparound issues
> > */
> > static void
> > -test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe)
> > +test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe, size_t oa_buffer_size)
> > {
> > /* ~20 micro second period */
> > int oa_exponent = max_oa_exponent_for_period_lte(20000);
> > @@ -2522,6 +2522,7 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe)
> > DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(fmt),
> > DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, oa_exponent,
> > DRM_XE_OA_PROPERTY_OA_ENGINE_INSTANCE, hwe->engine_instance,
> > + DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, oa_buffer_size,
> > };
> > struct intel_xe_oa_open_prop param = {
> > .num_properties = ARRAY_SIZE(properties) / 2,
> > @@ -2541,6 +2542,9 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe)
> > load_helper_init();
> > load_helper_run(HIGH);
> >
> > + if (!oa_buffer_size)
> > + param.num_properties = param.num_properties - 1;
> > +
> > stream_fd = __perf_open(drm_fd, ¶m, true /* prevent_pm */);
> > set_fd_flags(stream_fd, O_CLOEXEC);
> >
> > @@ -4867,8 +4871,28 @@ igt_main
> > test_buffer_fill(hwe);
> >
> > igt_subtest_with_dynamic("non-zero-reason") {
> > - __for_one_hwe_in_oag(hwe)
> > - test_non_zero_reason(hwe);
> > + struct drm_xe_query_oa_units *qoa = xe_oa_units(drm_fd);
> > + struct drm_xe_oa_unit *oau = (struct drm_xe_oa_unit *)&qoa->oa_units[0];
> > +
> > + if (oau->capabilities & DRM_XE_OA_CAPS_OA_BUFFER_SIZE) {
> > + hwe = oa_unit_engine(drm_fd, 0);
> > + if (hwe) {
> > + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class),
> > + hwe->engine_instance, "8MB")
> > + test_non_zero_reason(hwe, SZ_8M);
> > +
> > + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class),
> > + hwe->engine_instance, "16MB")
> > + test_non_zero_reason(hwe, SZ_16M);
> > +
> > + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class),
> > + hwe->engine_instance, "32MB")
> > + test_non_zero_reason(hwe, SZ_32M);
> > + }
> > + } else {
> > + __for_one_hwe_in_oag(hwe)
> > + test_non_zero_reason(hwe, 0);
> > + }
> > }
> >
> > igt_subtest("disabled-read-error")
> > --
> > 2.34.1
> >
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for Add test for configurable OA buffer size (rev2)
2025-01-16 13:54 [PATCH i-g-t v2 0/1] Add test for configurable OA buffer size Sai Teja Pottumuttu
2025-01-16 13:54 ` [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Extend non-zero-reason test Sai Teja Pottumuttu
@ 2025-01-17 4:00 ` Patchwork
2025-01-17 4:01 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-17 4:00 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2643 bytes --]
== Series Details ==
Series: Add test for configurable OA buffer size (rev2)
URL : https://patchwork.freedesktop.org/series/142128/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8195_BAT -> XEIGTPW_12450_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12450_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_exec_basic@twice-bindexecqueue-rebind:
- bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3970] / [Intel XE#4078])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [PASS][3] -> [SKIP][4] ([Intel XE#1192]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: [SKIP][5] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][6] ([Intel XE#1192])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_8195 -> IGTPW_12450
* Linux: xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c -> xe-2501-596a18adf934dd4a61e15c72b7e1e4ddae489474
IGTPW_12450: c39b75a0b25211edcf46f78b95c8bf019186a04f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8195: 8195
xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c
xe-2501-596a18adf934dd4a61e15c72b7e1e4ddae489474: 596a18adf934dd4a61e15c72b7e1e4ddae489474
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/index.html
[-- Attachment #2: Type: text/html, Size: 3331 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for Add test for configurable OA buffer size (rev2)
2025-01-16 13:54 [PATCH i-g-t v2 0/1] Add test for configurable OA buffer size Sai Teja Pottumuttu
2025-01-16 13:54 ` [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Extend non-zero-reason test Sai Teja Pottumuttu
2025-01-17 4:00 ` ✓ Xe.CI.BAT: success for Add test for configurable OA buffer size (rev2) Patchwork
@ 2025-01-17 4:01 ` Patchwork
2025-01-17 8:18 ` ✗ Xe.CI.Full: failure " Patchwork
2025-01-18 1:43 ` ✗ i915.CI.Full: " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-17 4:01 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6525 bytes --]
== Series Details ==
Series: Add test for configurable OA buffer size (rev2)
URL : https://patchwork.freedesktop.org/series/142128/
State : success
== Summary ==
CI Bug Log - changes from IGT_8195 -> IGTPW_12450
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/index.html
Participating hosts (42 -> 41)
------------------------------
Additional (1): bat-adls-6
Missing (2): fi-blb-e6850 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12450 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-adls-6: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic:
- bat-adls-6: NOTRUN -> [SKIP][3] ([i915#3282])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt@gem_tiled_pread_basic.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][4] -> [DMESG-FAIL][5] ([i915#12061]) +1 other test dmesg-fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-mtlp-8/igt@i915_selftest@live.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [PASS][6] -> [DMESG-WARN][7] ([i915#11621]) +132 other tests dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][8] -> [DMESG-FAIL][9] ([i915#12061]) +1 other test dmesg-fail
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-arlh-3/igt@i915_selftest@live@workarounds.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][10] ([i915#4103]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#3840])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][12]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][13] ([i915#5354])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][14] ([i915#1072] / [i915#9732]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][15] ([i915#3555])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][16] ([i915#3291]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adls-6/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-adlp-6: [ABORT][17] ([i915#13399]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-adlp-6/igt@i915_selftest@live.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-adlp-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [DMESG-FAIL][19] ([i915#12061]) -> [PASS][20] +1 other test pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8195/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13399
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8195 -> IGTPW_12450
* Linux: CI_DRM_15966 -> CI_DRM_15971
CI-20190529: 20190529
CI_DRM_15966: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15971: 58078c97cb752a5ea9ae2f2e3ab898945153d39e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12450: c39b75a0b25211edcf46f78b95c8bf019186a04f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8195: 8195
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/index.html
[-- Attachment #2: Type: text/html, Size: 7677 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for Add test for configurable OA buffer size (rev2)
2025-01-16 13:54 [PATCH i-g-t v2 0/1] Add test for configurable OA buffer size Sai Teja Pottumuttu
` (2 preceding siblings ...)
2025-01-17 4:01 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-01-17 8:18 ` Patchwork
2025-01-18 1:43 ` ✗ i915.CI.Full: " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-17 8:18 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 132162 bytes --]
== Series Details ==
Series: Add test for configurable OA buffer size (rev2)
URL : https://patchwork.freedesktop.org/series/142128/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8195_full -> XEIGTPW_12450_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12450_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12450_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12450_full:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@hotreplug:
- shard-dg2-set2: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt@core_hotunplug@hotreplug.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-463/igt@core_hotunplug@hotreplug.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2-set2: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-464/igt@kms_dp_linktrain_fallback@dp-fallback.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-dg2-set2: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
#### Warnings ####
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [SKIP][7] ([Intel XE#2423]) -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
New tests
---------
New tests have been introduced between XEIGT_8195_full and XEIGTPW_12450_full:
### New IGT tests (45) ###
* igt@kms_atomic@crtc-invalid-params-fence@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.56] s
* igt@kms_atomic@plane-primary-legacy@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.98] s
* igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.67] s
* igt@kms_cursor_crc@cursor-alpha-transparent@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.42] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.48] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.21] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [4.20] s
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [4.25] s
* igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [3.39] s
* igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [3.25] s
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.39] s
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-hdmi-a6-dp4:
- Statuses : 1 pass(s)
- Exec time: [2.30] s
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ac-hdmi-a6-dp4:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ad-hdmi-a6-dp4:
- Statuses : 1 pass(s)
- Exec time: [2.15] s
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@bc-hdmi-a6-dp4:
- Statuses : 1 pass(s)
- Exec time: [2.33] s
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@bd-hdmi-a6-dp4:
- Statuses : 1 pass(s)
- Exec time: [2.33] s
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@cd-hdmi-a6-dp4:
- Statuses : 1 pass(s)
- Exec time: [2.43] s
* igt@kms_flip@basic-flip-vs-dpms@a-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.80] s
* igt@kms_flip@basic-flip-vs-dpms@b-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.73] s
* igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.74] s
* igt@kms_flip@basic-flip-vs-dpms@d-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.74] s
* igt@kms_flip@bo-too-big-interruptible@a-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.29] s
* igt@kms_flip@bo-too-big-interruptible@b-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.16] s
* igt@kms_flip@bo-too-big-interruptible@c-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.18] s
* igt@kms_flip@bo-too-big-interruptible@d-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.18] s
* igt@kms_flip@busy-flip@a-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.81] s
* igt@kms_flip@busy-flip@b-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.71] s
* igt@kms_flip@busy-flip@c-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.72] s
* igt@kms_flip@busy-flip@d-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.71] s
* igt@kms_flip@nonexisting-fb@a-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.30] s
* igt@kms_flip@nonexisting-fb@b-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.21] s
* igt@kms_flip@nonexisting-fb@c-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.21] s
* igt@kms_flip@nonexisting-fb@d-hdmi-a6:
- Statuses : 1 pass(s)
- Exec time: [0.20] s
* igt@kms_sequence@queue-busy@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.67] s
* igt@kms_sequence@queue-busy@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.42] s
* igt@kms_sequence@queue-busy@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.42] s
* igt@kms_sequence@queue-busy@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.42] s
* igt@kms_vblank@query-busy-hang@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.63] s
* igt@kms_vblank@query-busy-hang@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.38] s
* igt@xe_oa@non-zero-reason@ccs-0-16mb:
- Statuses : 1 pass(s)
- Exec time: [2.82] s
* igt@xe_oa@non-zero-reason@ccs-0-32mb:
- Statuses : 1 pass(s)
- Exec time: [2.81] s
* igt@xe_oa@non-zero-reason@ccs-0-8mb:
- Statuses : 1 pass(s)
- Exec time: [2.81] s
* igt@xe_oa@non-zero-reason@rcs-0-16mb:
- Statuses : 1 pass(s)
- Exec time: [2.88] s
* igt@xe_oa@non-zero-reason@rcs-0-32mb:
- Statuses : 1 pass(s)
- Exec time: [2.89] s
* igt@xe_oa@non-zero-reason@rcs-0-8mb:
- Statuses : 1 pass(s)
- Exec time: [2.88] s
Known issues
------------
Here are the changes found in XEIGTPW_12450_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unplug-rescan:
- shard-bmg: [PASS][9] -> [SKIP][10] ([Intel XE#1885]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt@core_hotunplug@unplug-rescan.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@core_hotunplug@unplug-rescan.html
* igt@fbdev@unaligned-read:
- shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#2134])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt@fbdev@unaligned-read.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@fbdev@unaligned-read.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#873])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#664])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt@kms_async_flips@test-cursor.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2327])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-1/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +4 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1124])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +8 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#619])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#367]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2191]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#367])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-7/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#367])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +4 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +28 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2669]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#2136]) +23 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#3442])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#3432]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#2907])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +6 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#787]) +118 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#314]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-463/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1152]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-3/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2325])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#306]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-463/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-crc-planes-random:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2252]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@kms_chamelium_frames@hdmi-crc-planes-random.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#3007])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#373]) +9 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +7 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-1/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#307])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#1178])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt@kms_content_protection@legacy@pipe-a-dp-2.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#1178]) +3 other tests fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2423]) +13 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#308])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1424]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#309]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2291])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-lnl: [PASS][52] -> [FAIL][53] ([Intel XE#1475])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#323])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1138])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1137])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt@kms_feature_discovery@dp-mst.html
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1137])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1421]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][59] -> [FAIL][60] ([Intel XE#301] / [Intel XE#3321])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][61] -> [FAIL][62] ([Intel XE#301])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp4.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][63] ([Intel XE#3321])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][64] ([Intel XE#301]) +6 other tests fail
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#2316])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [FAIL][67] ([Intel XE#886]) +2 other tests fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1:
- shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#886]) +4 other tests fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-7/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-8/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
* igt@kms_flip@flip-vs-suspend@c-edp1:
- shard-lnl: [PASS][70] -> [DMESG-WARN][71] ([Intel XE#2932]) +3 other tests dmesg-warn
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-6/igt@kms_flip@flip-vs-suspend@c-edp1.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-4/igt@kms_flip@flip-vs-suspend@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1401]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling:
- shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2293]) +6 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#651]) +30 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [FAIL][78] ([Intel XE#2333]) +1 other test fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#656]) +20 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2312])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#651]) +7 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2311]) +5 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2313]) +6 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2136]) +18 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#653]) +29 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#2340])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-3/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#455]) +18 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-swap:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1503])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt@kms_hdr@static-swap.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#346])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-1/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2925])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#2934])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2927])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#3307])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2763]) +11 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
- shard-bmg: [PASS][96] -> [SKIP][97] ([Intel XE#2423]) +123 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#2763]) +7 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2763] / [Intel XE#455]) +6 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2763]) +19 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2938])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#870])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][103] -> [FAIL][104] ([Intel XE#718])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#1129])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@cursor:
- shard-bmg: [PASS][106] -> [SKIP][107] ([Intel XE#2446]) +5 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt@kms_pm_rpm@cursor.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_prop_blob@blob-prop-core:
- shard-bmg: [PASS][109] -> [SKIP][110] ([Intel XE#3007]) +7 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_prop_blob@blob-prop-core.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_prop_blob@blob-prop-core.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2893])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#1489]) +12 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#1489]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@pr-basic:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1406])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt@kms_psr@pr-basic.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2850] / [Intel XE#929]) +16 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr2-suspend:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt@kms_psr@psr2-suspend.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#1127]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#3414]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2413])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][120] -> [FAIL][121] ([Intel XE#2883]) +2 other tests fail
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1435]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-4/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#330])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#330])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [INCOMPLETE][125] ([Intel XE#3864])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-3.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#1499])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2168])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#756]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@kms_writeback@writeback-fb-id.html
* igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1280] / [Intel XE#455])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1123])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#3889])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
* igt@xe_eudebug_online@resume-dss:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2905]) +10 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt@xe_eudebug_online@resume-dss.html
* igt@xe_eudebug_online@stopped-thread:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2905]) +4 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-1/igt@xe_eudebug_online@stopped-thread.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2905]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_evict@evict-beng-small:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#688]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-2/igt@xe_evict@evict-beng-small.html
* igt@xe_exec_balancer@many-parallel-userptr-invalidate:
- shard-bmg: [PASS][136] -> [SKIP][137] ([Intel XE#1130]) +275 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1392]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1392]) +5 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-dg2-set2: [PASS][140] -> [SKIP][141] ([Intel XE#1392])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@xe_exec_basic@multigpu-once-null-rebind.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#288]) +20 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_gt_freq@freq_suspend:
- shard-dg2-set2: [PASS][143] -> [ABORT][144] ([Intel XE#2625])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt@xe_gt_freq@freq_suspend.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@xe_gt_freq@freq_suspend.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#255])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [PASS][146] -> [SKIP][147] ([Intel XE#2229]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt@xe_live_ktest@xe_bo.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1192] / [Intel XE#3026])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-8/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#2229])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-bmg: [PASS][150] -> [FAIL][151] ([Intel XE#1999]) +2 other tests fail
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_module_load@force-load:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#378])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt@xe_module_load@force-load.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2248])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-7/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#977])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#2838] / [Intel XE#979])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2284])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s2idle-basic-exec:
- shard-dg2-set2: [PASS][159] -> [ABORT][160] ([Intel XE#1358])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@xe_pm@s2idle-basic-exec.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-dg2-set2: NOTRUN -> [ABORT][161] ([Intel XE#1358] / [Intel XE#1794])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-dg2-set2: [PASS][163] -> [ABORT][164] ([Intel XE#1358] / [Intel XE#1794])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-464/igt@xe_pm@s3-d3hot-basic-exec.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s4-basic-exec:
- shard-lnl: [PASS][165] -> [ABORT][166] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-1/igt@xe_pm@s4-basic-exec.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-2/igt@xe_pm@s4-basic-exec.html
* igt@xe_query@multigpu-query-engines:
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#944])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#944]) +3 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#3342])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-4/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_vm@bind-no-array-conflict:
- shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#1130]) +28 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@xe_vm@bind-no-array-conflict.html
#### Possible fixes ####
* igt@core_hotunplug@hotrebind:
- shard-bmg: [SKIP][171] ([Intel XE#1885]) -> [PASS][172] +2 other tests pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@core_hotunplug@hotrebind.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@core_hotunplug@hotrebind.html
* igt@core_setmaster@master-drop-set-user:
- shard-bmg: [FAIL][173] ([Intel XE#3249]) -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@core_setmaster@master-drop-set-user.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@core_setmaster@master-drop-set-user.html
* igt@fbdev@info:
- shard-bmg: [SKIP][175] ([Intel XE#2134]) -> [PASS][176] +3 other tests pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@fbdev@info.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@fbdev@info.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-bmg: [INCOMPLETE][177] ([Intel XE#3861]) -> [PASS][178] +1 other test pass
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_async_flips@async-flip-suspend-resume.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
- shard-lnl: [FAIL][179] ([Intel XE#3719]) -> [PASS][180] +3 other tests pass
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2-set2: [SKIP][181] ([Intel XE#2136]) -> [PASS][182] +5 other tests pass
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-180:
- shard-bmg: [SKIP][183] ([Intel XE#2136]) -> [PASS][184] +21 other tests pass
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-180.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt@kms_big_fb@linear-16bpp-rotate-180.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][185] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][186]
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][187] ([Intel XE#1727] / [Intel XE#3124]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [INCOMPLETE][189] ([Intel XE#3124]) -> [PASS][190]
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][191] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][192]
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-bmg: [SKIP][193] ([Intel XE#2291]) -> [PASS][194] +3 other tests pass
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-dg2-set2: [ABORT][195] -> [PASS][196]
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt@kms_fbcon_fbt@fbc-suspend.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-bmg: [SKIP][197] ([Intel XE#2316]) -> [PASS][198] +1 other test pass
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][199] ([Intel XE#301]) -> [PASS][200] +3 other tests pass
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-dg2-set2: [ABORT][201] ([Intel XE#2625]) -> [PASS][202]
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@busy-flip:
- shard-dg2-set2: [SKIP][203] ([Intel XE#2423] / [i915#2575]) -> [PASS][204] +14 other tests pass
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_flip@busy-flip.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt@kms_flip@busy-flip.html
* igt@kms_flip@flip-vs-panning-interruptible:
- shard-dg2-set2: [INCOMPLETE][205] ([Intel XE#2049]) -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt@kms_flip@flip-vs-panning-interruptible.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt@kms_flip@flip-vs-panning-interruptible.html
* igt@kms_flip@flip-vs-panning-interruptible@c-dp4:
- shard-dg2-set2: [INCOMPLETE][207] -> [PASS][208] +1 other test pass
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-463/igt@kms_flip@flip-vs-panning-interruptible@c-dp4.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt@kms_flip@flip-vs-panning-interruptible@c-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [INCOMPLETE][209] ([Intel XE#2597]) -> [PASS][210]
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-wf_vblank-interruptible:
- shard-lnl: [FAIL][211] ([Intel XE#886]) -> [PASS][212] +7 other tests pass
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-2/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-4/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@plain-flip-ts-check:
- shard-bmg: [FAIL][213] ([Intel XE#2882]) -> [PASS][214] +2 other tests pass
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt@kms_flip@plain-flip-ts-check.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@kms_flip@plain-flip-ts-check.html
- shard-lnl: [FAIL][215] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-1/igt@kms_flip@plain-flip-ts-check.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-7/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-lnl: [INCOMPLETE][217] ([Intel XE#2050]) -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][219] ([Intel XE#2571]) -> [PASS][220]
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
- shard-bmg: [SKIP][221] ([Intel XE#2423]) -> [PASS][222] +103 other tests pass
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-bmg: [SKIP][223] ([Intel XE#2446]) -> [PASS][224] +2 other tests pass
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-dg2-set2: [SKIP][225] ([Intel XE#2446]) -> [PASS][226] +1 other test pass
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_pm_rpm@universal-planes-dpms.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_vrr@flipline:
- shard-lnl: [FAIL][227] ([Intel XE#1522]) -> [PASS][228] +1 other test pass
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-lnl-7/igt@kms_vrr@flipline.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-lnl-6/igt@kms_vrr@flipline.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
- shard-dg2-set2: [SKIP][229] ([Intel XE#1392]) -> [PASS][230]
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
* igt@xe_mmap@pci-membarrier-bad-object:
- shard-dg2-set2: [SKIP][231] ([Intel XE#4045]) -> [PASS][232] +1 other test pass
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-433/igt@xe_mmap@pci-membarrier-bad-object.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt@xe_mmap@pci-membarrier-bad-object.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: [ABORT][233] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-432/igt@xe_pm@s4-vm-bind-unbind-all.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-463/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_spin_batch@spin-all:
- shard-bmg: [SKIP][235] ([Intel XE#1130]) -> [PASS][236] +231 other tests pass
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@xe_spin_batch@spin-all.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt@xe_spin_batch@spin-all.html
* igt@xe_vm@invalid-extensions:
- shard-dg2-set2: [SKIP][237] ([Intel XE#1130]) -> [PASS][238] +27 other tests pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@xe_vm@invalid-extensions.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-463/igt@xe_vm@invalid-extensions.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: [SKIP][239] ([Intel XE#2423]) -> [SKIP][240] ([Intel XE#2370]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: [SKIP][241] ([Intel XE#2136]) -> [SKIP][242] ([Intel XE#2327]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][243] ([Intel XE#2136]) -> [SKIP][244] ([Intel XE#316])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-270.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-bmg: [SKIP][245] ([Intel XE#2327]) -> [SKIP][246] ([Intel XE#2136]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt@kms_big_fb@linear-8bpp-rotate-270.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-bmg: [SKIP][247] ([Intel XE#2327]) -> [SKIP][248] ([Intel XE#2136] / [Intel XE#2231])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][249] ([Intel XE#2136]) -> [SKIP][250] ([Intel XE#1124]) +2 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: [SKIP][251] ([Intel XE#2328]) -> [SKIP][252] ([Intel XE#2136])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: [SKIP][253] ([Intel XE#2136]) -> [SKIP][254] ([Intel XE#610])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][255] ([Intel XE#2136]) -> [SKIP][256] ([Intel XE#1124]) +15 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: [SKIP][257] ([Intel XE#607]) -> [SKIP][258] ([Intel XE#2136])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-bmg: [SKIP][259] ([Intel XE#1124]) -> [SKIP][260] ([Intel XE#2136]) +15 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-bmg: [SKIP][261] ([Intel XE#1124]) -> [SKIP][262] ([Intel XE#2136] / [Intel XE#2231])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][263] ([Intel XE#2423]) -> [SKIP][264] ([Intel XE#2314] / [Intel XE#2894])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: [SKIP][265] ([Intel XE#2423]) -> [SKIP][266] ([Intel XE#367]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][267] ([Intel XE#367]) -> [SKIP][268] ([Intel XE#2423]) +4 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs:
- shard-bmg: [SKIP][269] ([Intel XE#2887]) -> [SKIP][270] ([Intel XE#2136] / [Intel XE#2231])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][271] ([Intel XE#2136]) -> [SKIP][272] ([Intel XE#455] / [Intel XE#787])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-bmg: [SKIP][273] ([Intel XE#2887]) -> [SKIP][274] ([Intel XE#2136]) +22 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: [SKIP][275] ([Intel XE#3432]) -> [SKIP][276] ([Intel XE#2136]) +4 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][277] ([Intel XE#2136]) -> [SKIP][278] ([Intel XE#2887]) +25 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][279] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][280] ([Intel XE#455] / [Intel XE#787])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: [SKIP][281] ([Intel XE#2136]) -> [SKIP][282] ([Intel XE#2724])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_cdclk@mode-transition.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: [SKIP][283] ([Intel XE#2724]) -> [SKIP][284] ([Intel XE#2136]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: [SKIP][285] ([Intel XE#2325]) -> [SKIP][286] ([Intel XE#2423]) +2 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt@kms_chamelium_color@ctm-0-50.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: [SKIP][287] ([Intel XE#2423]) -> [SKIP][288] ([Intel XE#2252]) +11 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: [SKIP][289] ([Intel XE#2423] / [i915#2575]) -> [SKIP][290] ([Intel XE#373]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: [SKIP][291] ([Intel XE#2252]) -> [SKIP][292] ([Intel XE#2423]) +12 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_content_protection@legacy:
- shard-bmg: [SKIP][293] ([Intel XE#2423]) -> [FAIL][294] ([Intel XE#1178])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_content_protection@legacy.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [FAIL][295] ([Intel XE#1178]) -> [SKIP][296] ([Intel XE#2423])
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt@kms_content_protection@lic-type-0.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-bmg: [SKIP][297] ([Intel XE#2341]) -> [SKIP][298] ([Intel XE#2423])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt@kms_content_protection@mei-interface.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][299] ([Intel XE#1188]) -> [SKIP][300] ([Intel XE#2423])
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt@kms_content_protection@uevent.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: [SKIP][301] ([Intel XE#2423]) -> [SKIP][302] ([Intel XE#2321]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: [SKIP][303] ([Intel XE#2320]) -> [SKIP][304] ([Intel XE#2423]) +10 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt@kms_cursor_crc@cursor-random-32x32.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-bmg: [SKIP][305] ([Intel XE#2423]) -> [SKIP][306] ([Intel XE#2320]) +4 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-bmg: [SKIP][307] ([Intel XE#2321]) -> [SKIP][308] ([Intel XE#2423])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: [SKIP][309] ([Intel XE#2321]) -> [SKIP][310] ([Intel XE#3007])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][311] ([Intel XE#2423]) -> [SKIP][312] ([Intel XE#2291])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-bmg: [SKIP][313] ([Intel XE#2286]) -> [SKIP][314] ([Intel XE#2423]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][315] ([Intel XE#877]) -> [SKIP][316] ([Intel XE#2423])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [SKIP][317] ([Intel XE#2291]) -> [SKIP][318] ([Intel XE#2423]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: [SKIP][319] ([Intel XE#2423] / [i915#2575]) -> [SKIP][320] ([Intel XE#323])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: [SKIP][321] ([Intel XE#1508]) -> [SKIP][322] ([Intel XE#2136] / [Intel XE#2231])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: [FAIL][323] ([Intel XE#2141]) -> [SKIP][324] ([Intel XE#2136])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-with-bpc:
- shard-bmg: [SKIP][325] ([Intel XE#2244]) -> [SKIP][326] ([Intel XE#2136]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt@kms_dsc@dsc-with-bpc.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: [SKIP][327] ([Intel XE#776]) -> [SKIP][328] ([Intel XE#2136])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_fbcon_fbt@psr-suspend.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: [SKIP][329] ([Intel XE#2423]) -> [SKIP][330] ([Intel XE#2372])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_feature_discovery@chamelium.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: [SKIP][331] ([Intel XE#2375]) -> [SKIP][332] ([Intel XE#2423])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt@kms_feature_discovery@dp-mst.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: [SKIP][333] ([Intel XE#2423]) -> [SKIP][334] ([Intel XE#2374])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_feature_discovery@psr2.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@kms_feature_discovery@psr2.html
- shard-dg2-set2: [SKIP][335] ([Intel XE#2423] / [i915#2575]) -> [SKIP][336] ([Intel XE#1135])
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_feature_discovery@psr2.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [FAIL][337] -> [SKIP][338] ([Intel XE#2423])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-bmg: [INCOMPLETE][339] -> [SKIP][340] ([Intel XE#3007])
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][341] ([Intel XE#2316]) -> [SKIP][342] ([Intel XE#2423]) +2 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip:
- shard-bmg: [SKIP][343] ([Intel XE#2423]) -> [SKIP][344] ([Intel XE#2316]) +2 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_flip@2x-plain-flip.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][345] ([Intel XE#2136]) -> [SKIP][346] ([Intel XE#455])
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: [SKIP][347] ([Intel XE#2380]) -> [SKIP][348] ([Intel XE#2136])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: [SKIP][349] ([Intel XE#2136]) -> [SKIP][350] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-bmg: [SKIP][351] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][352] ([Intel XE#2136]) +6 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][353] ([Intel XE#2311]) -> [SKIP][354] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][355] ([Intel XE#2136]) -> [SKIP][356] ([Intel XE#2312]) +5 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][357] ([Intel XE#2312]) -> [SKIP][358] ([Intel XE#2136]) +7 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][359] ([Intel XE#2312]) -> [SKIP][360] ([Intel XE#2311]) +4 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][361] ([Intel XE#2136]) -> [SKIP][362] ([Intel XE#651]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
- shard-bmg: [SKIP][363] ([Intel XE#2136]) -> [SKIP][364] ([Intel XE#2136] / [Intel XE#2231]) +15 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-bmg: [SKIP][365] ([Intel XE#2136]) -> [SKIP][366] ([Intel XE#2311]) +28 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: [FAIL][367] ([Intel XE#2333]) -> [SKIP][368] ([Intel XE#2136]) +23 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [FAIL][369] ([Intel XE#2333]) -> [SKIP][370] ([Intel XE#2312])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][371] ([Intel XE#2136]) -> [FAIL][372] ([Intel XE#2333]) +22 other tests fail
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [FAIL][373] ([Intel XE#2333]) -> [SKIP][374] ([Intel XE#2136] / [Intel XE#2231])
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
- shard-bmg: [SKIP][375] ([Intel XE#2312]) -> [FAIL][376] ([Intel XE#2333])
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: [SKIP][377] ([Intel XE#2136]) -> [SKIP][378] ([Intel XE#2352])
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][379] ([Intel XE#2311]) -> [SKIP][380] ([Intel XE#2136]) +37 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][381] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][382] ([Intel XE#651]) +1 other test skip
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][383] ([Intel XE#2311]) -> [SKIP][384] ([Intel XE#2312]) +2 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][385] ([Intel XE#2312]) -> [SKIP][386] ([Intel XE#2313]) +2 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][387] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][388] ([Intel XE#653]) +1 other test skip
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][389] ([Intel XE#2313]) -> [SKIP][390] ([Intel XE#2312]) +5 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][391] ([Intel XE#2136]) -> [SKIP][392] ([Intel XE#2313]) +37 other tests skip
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][393] ([Intel XE#2313]) -> [SKIP][394] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: [SKIP][395] ([Intel XE#2313]) -> [SKIP][396] ([Intel XE#2136]) +37 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render:
- shard-dg2-set2: [SKIP][397] ([Intel XE#2136]) -> [SKIP][398] ([Intel XE#653]) +4 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-bmg: [SKIP][399] ([Intel XE#2502]) -> [SKIP][400] ([Intel XE#2423])
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt@kms_getfb@getfb-reject-ccs.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][401] ([Intel XE#2423]) -> [SKIP][402] ([Intel XE#3374] / [Intel XE#3544])
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][403] ([Intel XE#2423]) -> [SKIP][404] ([Intel XE#1503])
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: [SKIP][405] ([Intel XE#2934]) -> [SKIP][406] ([Intel XE#2136]) +1 other test skip
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: [SKIP][407] ([Intel XE#2136]) -> [SKIP][408] ([Intel XE#2927])
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_joiner@basic-ultra-joiner.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg2-set2: [SKIP][409] ([Intel XE#2136]) -> [SKIP][410] ([Intel XE#2927])
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-433/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: [SKIP][411] ([Intel XE#346]) -> [SKIP][412] ([Intel XE#2136])
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][413] ([Intel XE#2136]) -> [SKIP][414] ([Intel XE#3012])
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-bmg: [SKIP][415] ([Intel XE#2927]) -> [SKIP][416] ([Intel XE#2136])
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: [SKIP][417] ([Intel XE#2486]) -> [SKIP][418] ([Intel XE#2423]) +1 other test skip
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_panel_fitting@legacy.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: [SKIP][419] ([Intel XE#2423]) -> [SKIP][420] ([Intel XE#2493])
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2-set2: [SKIP][421] ([Intel XE#2423] / [i915#2575]) -> [SKIP][422] ([Intel XE#2763] / [Intel XE#455])
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-bmg: [SKIP][423] ([Intel XE#2423]) -> [SKIP][424] ([Intel XE#2763]) +4 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: [SKIP][425] ([Intel XE#2763]) -> [SKIP][426] ([Intel XE#2423]) +3 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: [SKIP][427] ([Intel XE#2136]) -> [SKIP][428] ([Intel XE#870])
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_pm_backlight@basic-brightness.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: [SKIP][429] ([Intel XE#2938]) -> [SKIP][430] ([Intel XE#2136])
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt@kms_pm_backlight@brightness-with-dpms.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-bmg: [SKIP][431] ([Intel XE#870]) -> [SKIP][432] ([Intel XE#2136]) +1 other test skip
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_pm_backlight@fade.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: [SKIP][433] ([Intel XE#2391]) -> [SKIP][434] ([Intel XE#2136])
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: [SKIP][435] ([Intel XE#2136]) -> [SKIP][436] ([Intel XE#2392])
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: [SKIP][437] ([Intel XE#2446]) -> [SKIP][438] ([Intel XE#1439] / [Intel XE#836])
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: [SKIP][439] ([Intel XE#1489]) -> [SKIP][440] ([Intel XE#2136]) +10 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-bmg: [SKIP][441] ([Intel XE#2136]) -> [SKIP][442] ([Intel XE#1489]) +6 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][443] ([Intel XE#2136]) -> [SKIP][444] ([Intel XE#1489]) +1 other test skip
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-432/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: [SKIP][445] ([Intel XE#2136]) -> [SKIP][446] ([Intel XE#2387])
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_psr2_su@page_flip-nv12.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: [SKIP][447] ([Intel XE#2387]) -> [SKIP][448] ([Intel XE#2136] / [Intel XE#2231])
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt@kms_psr2_su@page_flip-xrgb8888.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-dg2-set2: [SKIP][449] ([Intel XE#2136]) -> [SKIP][450] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-bmg: [SKIP][451] ([Intel XE#2136]) -> [SKIP][452] ([Intel XE#2234] / [Intel XE#2850]) +15 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_psr@fbc-psr2-primary-blt.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@psr-basic:
- shard-bmg: [SKIP][453] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][454] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt@kms_psr@psr-basic.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_psr@psr-basic.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: [SKIP][455] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][456] ([Intel XE#2136]) +23 other tests skip
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt@kms_psr@psr-primary-page-flip.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr2-primary-blt:
- shard-dg2-set2: [SKIP][457] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][458] ([Intel XE#2850] / [Intel XE#929])
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_psr@psr2-primary-blt.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@kms_psr@psr2-primary-blt.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: [SKIP][459] ([Intel XE#2136]) -> [SKIP][460] ([Intel XE#2234])
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_psr@psr2-primary-render.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: [SKIP][461] ([Intel XE#2136]) -> [SKIP][462] ([Intel XE#2414])
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: [SKIP][463] ([Intel XE#2330]) -> [SKIP][464] ([Intel XE#2423])
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: [SKIP][465] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][466] ([Intel XE#2423]) +1 other test skip
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: [SKIP][467] ([Intel XE#2423]) -> [SKIP][468] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: [SKIP][469] ([Intel XE#2423]) -> [SKIP][470] ([Intel XE#3007]) +10 other tests skip
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: [SKIP][471] ([Intel XE#2413]) -> [SKIP][472] ([Intel XE#2423])
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: [SKIP][473] ([Intel XE#2450]) -> [SKIP][474] ([Intel XE#2423])
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-5/igt@kms_tv_load_detect@load-detect.html
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-bmg: [SKIP][475] ([Intel XE#2423]) -> [INCOMPLETE][476] ([Intel XE#3864])
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_vblank@ts-continuation-dpms-suspend.html
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@cmrr:
- shard-bmg: [SKIP][477] ([Intel XE#2423]) -> [SKIP][478] ([Intel XE#2168])
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_vrr@cmrr.html
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-dpms:
- shard-bmg: [SKIP][479] ([Intel XE#2423]) -> [SKIP][480] ([Intel XE#1499])
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@kms_vrr@flip-dpms.html
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2-set2: [SKIP][481] ([Intel XE#2423] / [i915#2575]) -> [SKIP][482] ([Intel XE#455])
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@kms_vrr@seamless-rr-switch-drrs.html
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: [SKIP][483] ([Intel XE#1499]) -> [SKIP][484] ([Intel XE#2423]) +2 other tests skip
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@kms_vrr@seamless-rr-switch-virtual.html
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-bmg: [SKIP][485] ([Intel XE#756]) -> [SKIP][486] ([Intel XE#2423])
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-bmg: [SKIP][487] ([Intel XE#2423]) -> [SKIP][488] ([Intel XE#1091] / [Intel XE#2849])
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-8/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: [SKIP][489] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][490] ([Intel XE#2423])
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][491] ([Intel XE#1130]) -> [SKIP][492] ([Intel XE#1280] / [Intel XE#455])
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: [SKIP][493] ([Intel XE#1130]) -> [SKIP][494] ([Intel XE#2504])
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@xe_create@multigpu-create-massive-size.html
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt@xe_create@multigpu-create-massive-size.html
- shard-dg2-set2: [SKIP][495] ([Intel XE#1130]) -> [SKIP][496] ([Intel XE#944])
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@xe_create@multigpu-create-massive-size.html
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-463/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: [SKIP][497] ([Intel XE#1130]) -> [SKIP][498] ([Intel XE#2905]) +14 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-dg2-set2: [SKIP][499] ([Intel XE#1130]) -> [SKIP][500] ([Intel XE#3889])
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-464/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
- shard-bmg: [SKIP][501] ([Intel XE#1130]) -> [SKIP][502] ([Intel XE#3889])
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_eudebug@discovery-empty:
- shard-bmg: [SKIP][503] ([Intel XE#2905]) -> [SKIP][504] ([Intel XE#1130]) +17 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@xe_eudebug@discovery-empty.html
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@xe_eudebug@discovery-empty.html
* igt@xe_eudebug_online@set-breakpoint:
- shard-dg2-set2: [SKIP][505] ([Intel XE#1130]) -> [SKIP][506] ([Intel XE#2905])
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@xe_eudebug_online@set-breakpoint.html
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@xe_eudebug_online@set-breakpoint.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: [SKIP][507] ([Intel XE#1130]) -> [SKIP][508] ([Intel XE#2322]) +9 other tests skip
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: [SKIP][509] ([Intel XE#2322]) -> [SKIP][510] ([Intel XE#1130]) +16 other tests skip
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-8/igt@xe_exec_basic@multigpu-once-null-rebind.html
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@twice-basic-prefetch:
- shard-dg2-set2: [SKIP][511] ([Intel XE#1130]) -> [SKIP][512] ([Intel XE#288]) +3 other tests skip
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@xe_exec_fault_mode@twice-basic-prefetch.html
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-435/igt@xe_exec_fault_mode@twice-basic-prefetch.html
* igt@xe_media_fill@media-fill:
- shard-bmg: [SKIP][513] ([Intel XE#1130]) -> [SKIP][514] ([Intel XE#2459] / [Intel XE#2596])
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@xe_media_fill@media-fill.html
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-5/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@pci-membarrier-bad-pagesize:
- shard-bmg: [SKIP][515] ([Intel XE#4045]) -> [SKIP][516] ([Intel XE#1130])
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-3/igt@xe_mmap@pci-membarrier-bad-pagesize.html
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@xe_mmap@pci-membarrier-bad-pagesize.html
* igt@xe_oa@buffer-fill:
- shard-dg2-set2: [SKIP][517] ([Intel XE#1130]) -> [SKIP][518] ([Intel XE#2541] / [Intel XE#3573])
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-dg2-434/igt@xe_oa@buffer-fill.html
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-dg2-434/igt@xe_oa@buffer-fill.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: [SKIP][519] ([Intel XE#1130]) -> [SKIP][520] ([Intel XE#2245])
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-1/igt@xe_pat@pat-index-xelp.html
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: [SKIP][521] ([Intel XE#1130]) -> [SKIP][522] ([Intel XE#2236])
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@xe_pat@pat-index-xelpg.html
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: [SKIP][523] ([Intel XE#1130]) -> [SKIP][524] ([Intel XE#2284]) +1 other test skip
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@xe_pm@s2idle-d3cold-basic-exec.html
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-4/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-bmg: [SKIP][525] ([Intel XE#2284]) -> [SKIP][526] ([Intel XE#1130]) +2 other tests skip
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-4/igt@xe_pm@s3-d3cold-basic-exec.html
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-7/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-bmg: [SKIP][527] ([Intel XE#1130]) -> [SKIP][528] ([Intel XE#944]) +3 other tests skip
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-7/igt@xe_query@multigpu-query-hwconfig.html
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-2/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: [SKIP][529] ([Intel XE#944]) -> [SKIP][530] ([Intel XE#1130]) +5 other tests skip
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-2/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [SKIP][531] ([Intel XE#3342]) -> [SKIP][532] ([Intel XE#1130])
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8195/shard-bmg-6/igt@xe_sriov_flr@flr-vf1-clear.html
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[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#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[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#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[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#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#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[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#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#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#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#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[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#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[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#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[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#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[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#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[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#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[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#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3861
[Intel XE#3864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3864
[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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[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_8195 -> IGTPW_12450
* Linux: xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c -> xe-2501-596a18adf934dd4a61e15c72b7e1e4ddae489474
IGTPW_12450: c39b75a0b25211edcf46f78b95c8bf019186a04f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8195: 8195
xe-2497-2334d1179d652eb4032fcb0d8e6f53cbc6a1011c: 2334d1179d652eb4032fcb0d8e6f53cbc6a1011c
xe-2501-596a18adf934dd4a61e15c72b7e1e4ddae489474: 596a18adf934dd4a61e15c72b7e1e4ddae489474
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12450/index.html
[-- Attachment #2: Type: text/html, Size: 165478 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for Add test for configurable OA buffer size (rev2)
2025-01-16 13:54 [PATCH i-g-t v2 0/1] Add test for configurable OA buffer size Sai Teja Pottumuttu
` (3 preceding siblings ...)
2025-01-17 8:18 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-01-18 1:43 ` Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-18 1:43 UTC (permalink / raw)
To: Sai Teja Pottumuttu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100267 bytes --]
== Series Details ==
Series: Add test for configurable OA buffer size (rev2)
URL : https://patchwork.freedesktop.org/series/142128/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15971_full -> IGTPW_12450_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12450_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12450_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_12450/index.html
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12450_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_tiled_swapping@non-threaded:
- shard-tglu: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-10/igt@gem_tiled_swapping@non-threaded.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-snb: NOTRUN -> [INCOMPLETE][2] +1 other test incomplete
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb4/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-snb1/igt@i915_pm_rps@reset.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb2/igt@i915_pm_rps@reset.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-mtlp: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-3/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-2/igt@kms_flip@wf_vblank-ts-check-interruptible.html
Known issues
------------
Here are the changes found in IGTPW_12450_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-7/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8411]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#8411])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#9318])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#11078])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-4/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#11078])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-5/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +18 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt@drm_fdinfo@virtual-busy-hang.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#3936])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-1/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#9323])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#9323]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#7697])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-4/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#6335])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#8562])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#8555])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][27] ([i915#1099]) +6 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb5/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_ctx_sseu@engines:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#280]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@gem_ctx_sseu@engines.html
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#280])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu: NOTRUN -> [SKIP][31] ([i915#280]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][32] ([i915#13390])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk2/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-dg2: NOTRUN -> [FAIL][33] ([i915#5784])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-5/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][34] ([i915#8898])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb7/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#4771])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4771])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4812]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4036])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel:
- shard-tglu-1: NOTRUN -> [SKIP][40] ([i915#4525])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#4525]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-submit-fence.html
- shard-tglu: NOTRUN -> [SKIP][42] ([i915#4525]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_capture@capture-invisible:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#6334]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@gem_exec_capture@capture-invisible.html
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#6334]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-9/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][45] ([i915#11965]) +4 other tests fail
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +5 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_reloc@basic-concurrent0:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +14 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@gem_exec_reloc@basic-concurrent0.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +12 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#3281]) +7 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-glk: [PASS][54] -> [INCOMPLETE][55] ([i915#13196]) +1 other test incomplete
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-glk5/igt@gem_exec_suspend@basic-s3@smem.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk7/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4860]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613] / [i915#7582])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613] / [i915#7582])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-10/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@massive:
- shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@gem_lmem_swapping@massive.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-glk: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk1/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#12193]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4565]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#284])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@gem_media_vme.html
- shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#284])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4077]) +10 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4077]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-2/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) +7 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4083]) +5 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) +6 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#3282]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-tglu: NOTRUN -> [WARN][74] ([i915#2658]) +1 other test warn
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-3/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-snb: NOTRUN -> [WARN][75] ([i915#2658])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb7/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite_snooped:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#3282]) +6 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@gem_pwrite_snooped.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4270]) +4 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][78] ([i915#12917] / [i915#12964])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4270]) +7 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-rkl: NOTRUN -> [TIMEOUT][80] ([i915#12964])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#5190] / [i915#8428]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#4079]) +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4079]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4079]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4077]) +16 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4879])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3282] / [i915#3297])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#3297])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4880]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4880])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#3281] / [i915#3297])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#3297])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297]) +4 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap-cycles.html
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#3297]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-9/igt@gem_userptr_blits@unsync-unmap-cycles.html
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3297]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-8/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][97] +22 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@allowed-all:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#2856]) +6 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#2527]) +6 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt@gen9_exec_parse@bb-start-cmd.html
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt@gen9_exec_parse@bb-start-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#2856])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-6/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#2527]) +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_module_load@reload-no-display:
- shard-snb: [PASS][104] -> [ABORT][105] ([i915#11703])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-snb4/igt@i915_module_load@reload-no-display.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb7/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#7178])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@i915_module_load@resize-bar.html
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#6412])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-4/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#7091])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#8399])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#6590]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#11681] / [i915#6621])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#11681] / [i915#6621])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#11681]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4387])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-1/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_15971/shard-mtlp-6/igt@i915_power@sanity.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-5/igt@i915_power@sanity.html
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#7984])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#6245])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@i915_query@hwconfig_table.html
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#6245])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#5723])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-9/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock:
- shard-snb: NOTRUN -> [DMESG-WARN][121] ([i915#9311]) +1 other test dmesg-warn
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb5/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][122] ([i915#9311]) +1 other test dmesg-warn
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: NOTRUN -> [INCOMPLETE][123] ([i915#4817])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-mtlp: [PASS][124] -> [INCOMPLETE][125] ([i915#13491])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-7/igt@i915_suspend@debugfs-reader.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-2/igt@i915_suspend@debugfs-reader.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#7707])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt@intel_hwmon@hwmon-read.html
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#7707])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-1/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#7707]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#4212]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#4212])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-1/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4212]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-dg1: [PASS][132] -> [FAIL][133] ([i915#12518] / [i915#12766])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg1-12/igt@kms_async_flips@alternate-sync-async-flip.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-mtlp: [PASS][134] -> [FAIL][135] ([i915#10991] / [i915#13320])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-1/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-5/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-edp-1:
- shard-mtlp: [PASS][136] -> [FAIL][137] ([i915#13320])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-edp-1.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-edp-1.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][138] ([i915#12518])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-4.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-4-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#8709]) +23 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-4-4-mc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#8709]) +7 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#12967] / [i915#6228])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#9531])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][143] ([i915#1769]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#1769] / [i915#3555]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#1769] / [i915#3555]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#5286]) +8 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#5286]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#4538] / [i915#5286]) +6 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#5286])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#5286]) +7 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-0:
- shard-rkl: [PASS][151] -> [DMESG-WARN][152] ([i915#12964]) +22 other tests dmesg-warn
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-3/igt@kms_big_fb@linear-32bpp-rotate-0.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-0.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#3638]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#4538] / [i915#5190]) +18 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#3638]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#5190]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][157] +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#6187])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#4538]) +7 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#6095]) +29 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#12313]) +2 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#12313]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#6095]) +165 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#6095]) +4 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#6095]) +84 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#10307] / [i915#6095]) +121 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#12313])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#12805])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#12805])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#6095]) +13 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [PASS][172] -> [INCOMPLETE][173] ([i915#12796])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk9/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#12313]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#6095]) +77 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#12313]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#3742])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#4087]) +4 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +12 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg1: NOTRUN -> [SKIP][180] +51 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#11151] / [i915#7828]) +6 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-7/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#11151] / [i915#7828]) +8 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#11151] / [i915#7828]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#11151] / [i915#7828])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#11151] / [i915#7828]) +11 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@atomic:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#7118] / [i915#9424])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#3116] / [i915#3299])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-7/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#3299]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#7118] / [i915#9424])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#9424])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#6944] / [i915#7116] / [i915#7118])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#7116] / [i915#9424]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#3555])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#13049]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#3555]) +7 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#13049]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#8814])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555]) +5 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#13049]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#13049])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#13049])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_edge_walk@64x64-top-edge:
- shard-rkl: NOTRUN -> [DMESG-WARN][202] ([i915#12917] / [i915#12964])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt@kms_cursor_edge_walk@64x64-top-edge.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#4103] / [i915#4213])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#4103] / [i915#4213]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#13046] / [i915#5354]) +8 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#9809])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-8/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#4103])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#4103])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#9723])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#3555]) +11 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#3804])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#3804])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#1257])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt@kms_dp_aux_dev.html
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#1257])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-2/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#3840] / [i915#9688])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#3840])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#3840] / [i915#9053])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#3955])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html
- shard-tglu: NOTRUN -> [SKIP][221] ([i915#3469])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#1839]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt@kms_feature_discovery@display-3x.html
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#1839])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-7/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#1839])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][225] ([i915#658])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-4/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#658])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#658])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-glk: [PASS][228] -> [FAIL][229] ([i915#11989]) +1 other test fail
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-glk5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#3637]) +8 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-7/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#8381])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#3637]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][233] ([i915#12745] / [i915#4839])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][234] ([i915#4839])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#9934]) +11 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#9934]) +5 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#9934]) +7 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-rkl: [PASS][238] -> [FAIL][239] ([i915#11989])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-2/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-1/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1:
- shard-mtlp: [PASS][240] -> [FAIL][241] ([i915#11989]) +1 other test fail
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-1/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][242] ([i915#11989]) +1 other test fail
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-1/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a2.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#8381]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#2587] / [i915#2672]) +7 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#2587] / [i915#2672]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#2672]) +5 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#2587] / [i915#2672])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#2672]) +6 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#3555]) +5 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555]) +5 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#2672] / [i915#3555] / [i915#5190]) +5 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#8708]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [DMESG-WARN][257] ([i915#12964]) +17 other tests dmesg-warn
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][258] +37 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-snb: [PASS][259] -> [SKIP][260] +4 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][261] ([i915#10056] / [i915#13353])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk2/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#3458]) +24 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#3023]) +31 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][264] +382 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][265] +23 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#1825]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#8708]) +29 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#5439])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#10055]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#9766])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#10433] / [i915#3458]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#5354]) +46 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#1825]) +39 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][274] +103 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#8708]) +31 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#3458]) +26 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8228]) +3 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#12713])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle:
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) +2 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#10656])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@kms_joiner@basic-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#10656]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#12388])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#12339])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt@kms_joiner@basic-ultra-joiner.html
- shard-tglu: NOTRUN -> [SKIP][285] ([i915#12339])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#12339])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#4816])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#1839]) +2 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#1839]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#6301])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-glk: NOTRUN -> [INCOMPLETE][291] ([i915#12756] / [i915#13409] / [i915#13476])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk8/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][292] ([i915#13409] / [i915#13476])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#8806])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#13046] / [i915#5354] / [i915#9423])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#6953])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][296] ([i915#8292]) +1 other test fail
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#12247]) +4 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#12247]) +18 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][299] ([i915#12247]) +18 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
- shard-rkl: NOTRUN -> [DMESG-WARN][300] ([i915#12964] / [i915#1982])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#12247]) +13 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#12247] / [i915#6953])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#12247] / [i915#6953])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#12247] / [i915#6953])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#12247] / [i915#6953])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#12247]) +3 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#12343])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-1/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][308] ([i915#9812])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-4/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#5354])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#9685]) +2 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#9685])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#9685])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-mtlp: NOTRUN -> [SKIP][313] ([i915#3828])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-8/igt@kms_pm_dc@dc5-retention-flops.html
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#3828])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#5978])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [PASS][316] -> [SKIP][317] ([i915#4281])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#3828])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
- shard-tglu: NOTRUN -> [SKIP][319] ([i915#3828]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#8430])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: [PASS][321] -> [SKIP][322] ([i915#9519])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-5/igt@kms_pm_rpm@dpms-non-lpsp.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#12916])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][324] ([i915#9519]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#6524] / [i915#6805])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#6524])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][327] ([i915#11520]) +10 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk9/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][328] ([i915#11520]) +13 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-mtlp: NOTRUN -> [SKIP][329] ([i915#12316])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#11520]) +7 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
- shard-snb: NOTRUN -> [SKIP][331] ([i915#11520]) +8 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][332] ([i915#11520]) +9 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#11520]) +11 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#11520]) +4 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#9683])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][336] ([i915#9683])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-8/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#9683])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][338] ([i915#9683])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][339] +290 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk7/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-mtlp: NOTRUN -> [SKIP][340] ([i915#9688]) +3 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-2/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#9732]) +8 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html
- shard-dg1: NOTRUN -> [SKIP][342] ([i915#1072] / [i915#9732]) +25 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][343] ([i915#1072] / [i915#9732]) +35 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][344] ([i915#9732]) +25 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-7/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +23 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-7/igt@kms_psr@psr2-suspend.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#5289])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][347] ([i915#5289]) +1 other test skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][348] ([i915#3555]) +5 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][349] ([IGT#160])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt@kms_sysfs_edid_timing.html
- shard-dg1: NOTRUN -> [FAIL][350] ([IGT#160] / [i915#6493])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][351] ([i915#10959])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg1: NOTRUN -> [SKIP][352] ([i915#8623])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-tglu: NOTRUN -> [SKIP][353] ([i915#8623])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#9906])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#9906])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-tglu: NOTRUN -> [SKIP][356] ([i915#9906])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-3/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg1: NOTRUN -> [SKIP][357] ([i915#9906])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][358] ([i915#9906]) +1 other test skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][359] ([i915#2437])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2: NOTRUN -> [SKIP][360] ([i915#2437])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][361] ([i915#2437] / [i915#9412]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][362] ([i915#2437] / [i915#9412])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][363] ([i915#2437]) +1 other test skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@kms_writeback@writeback-invalid-parameters.html
- shard-tglu: NOTRUN -> [SKIP][364] ([i915#2437])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][365] ([i915#2436])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][366] ([i915#2434])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt@perf@mi-rpc.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg1: NOTRUN -> [SKIP][367] ([i915#8850])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@perf_pmu@cpu-hotplug.html
- shard-tglu: NOTRUN -> [SKIP][368] ([i915#8850])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-2/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][369] ([i915#12549] / [i915#6806]) +1 other test fail
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-5/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][370] ([i915#11823])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][371] ([i915#3708] / [i915#4077])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-dg1: NOTRUN -> [SKIP][372] ([i915#3708]) +1 other test skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-dg1: NOTRUN -> [SKIP][373] ([i915#3708] / [i915#4077])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][374] ([i915#3291] / [i915#3708])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-4/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][375] ([i915#3708])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg1: NOTRUN -> [SKIP][376] ([i915#9917]) +2 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-14/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [FAIL][377] ([i915#12910]) +9 other tests fail
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-8/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][378] ([i915#9917])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-5:
- shard-tglu-1: NOTRUN -> [FAIL][379] ([i915#12910]) +9 other tests fail
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-5.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][380] ([i915#4818])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-18/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][381] ([i915#4818])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_eio@in-flight-suspend:
- shard-rkl: [DMESG-WARN][382] ([i915#12964]) -> [PASS][383] +34 other tests pass
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-4/igt@gem_eio@in-flight-suspend.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-2/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-tglu: [DMESG-WARN][384] ([i915#13363]) -> [PASS][385]
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-tglu-4/igt@gem_eio@kms.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-9/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][386] ([i915#12543] / [i915#5784]) -> [PASS][387]
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg1-17/igt@gem_eio@reset-stress.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@full-late-pulse:
- shard-mtlp: [FAIL][388] ([i915#13364]) -> [PASS][389]
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-1/igt@gem_exec_balancer@full-late-pulse.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-8/igt@gem_exec_balancer@full-late-pulse.html
* igt@gem_exec_endless@dispatch@vcs1:
- shard-dg1: [TIMEOUT][390] ([i915#3778]) -> [PASS][391] +1 other test pass
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg1-12/igt@gem_exec_endless@dispatch@vcs1.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-17/igt@gem_exec_endless@dispatch@vcs1.html
* igt@gem_lmem_swapping@basic:
- shard-dg2: [SKIP][392] -> [PASS][393]
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg2-10/igt@gem_lmem_swapping@basic.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-2/igt@gem_lmem_swapping@basic.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [ABORT][394] ([i915#10729]) -> [PASS][395] +1 other test pass
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-3/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_softpin@noreloc-s3:
- shard-tglu: [ABORT][396] ([i915#12817]) -> [PASS][397]
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-tglu-6/igt@gem_softpin@noreloc-s3.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-5/igt@gem_softpin@noreloc-s3.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [DMESG-WARN][398] ([i915#13475]) -> [PASS][399]
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [ABORT][400] ([i915#10887] / [i915#12817] / [i915#9820]) -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-rkl: [FAIL][402] ([i915#12942]) -> [PASS][403] +1 other test pass
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-1/igt@i915_pm_rc6_residency@rc6-accuracy.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-dg2: [FAIL][404] ([i915#10991] / [i915#12766]) -> [PASS][405]
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg2-7/igt@kms_async_flips@alternate-sync-async-flip.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-10/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][406] ([i915#5138]) -> [PASS][407] +1 other test pass
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-snb: [FAIL][408] ([i915#11989]) -> [PASS][409] +1 other test pass
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-rkl: [FAIL][410] ([i915#11989]) -> [PASS][411] +1 other test pass
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1:
- shard-tglu: [FAIL][412] ([i915#11989]) -> [PASS][413]
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-tglu-3/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-tglu-6/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [DMESG-FAIL][414] ([i915#12964]) -> [PASS][415] +2 other tests pass
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-mtlp: [FAIL][416] ([i915#11989]) -> [PASS][417] +4 other tests pass
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-mtlp-8/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-mtlp-7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-rkl: [DMESG-WARN][418] ([i915#12917] / [i915#12964]) -> [PASS][419]
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-2/igt@kms_flip_tiling@flip-change-tiling.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-4/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_vblank@query-busy@pipe-c-hdmi-a-1:
- shard-glk: [DMESG-WARN][420] ([i915#118]) -> [PASS][421] +1 other test pass
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-glk8/igt@kms_vblank@query-busy@pipe-c-hdmi-a-1.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-glk1/igt@kms_vblank@query-busy@pipe-c-hdmi-a-1.html
* igt@perf_pmu@render-node-busy-idle@vcs0:
- shard-dg1: [FAIL][422] ([i915#4349]) -> [PASS][423] +1 other test pass
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg1-13/igt@perf_pmu@render-node-busy-idle@vcs0.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-13/igt@perf_pmu@render-node-busy-idle@vcs0.html
* igt@syncobj_wait@invalid-signal-bad-pad:
- shard-dg1: [DMESG-WARN][424] ([i915#4423]) -> [PASS][425]
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg1-12/igt@syncobj_wait@invalid-signal-bad-pad.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg1-12/igt@syncobj_wait@invalid-signal-bad-pad.html
#### Warnings ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][426] ([i915#12392]) -> [INCOMPLETE][427] ([i915#12392] / [i915#7297])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_exec_suspend@basic-s3:
- shard-rkl: [DMESG-FAIL][428] ([i915#12964]) -> [INCOMPLETE][429] ([i915#13304]) +1 other test incomplete
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-3/igt@gem_exec_suspend@basic-s3.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/shard-rkl-5/igt@gem_exec_suspend@basic-s3.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-rkl: [TIMEOUT][430] ([i915#12917] / [i915#12964]) -> [SKIP][431] ([i915#4270]) +1 other test skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15971/shard-rkl-2/igt@gem_pxp@verify-pxp-stale-buf-
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12450/index.html
[-- Attachment #2: Type: text/html, Size: 110199 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Extend non-zero-reason test
2025-01-17 0:58 ` Dixit, Ashutosh
2025-01-17 1:00 ` Dixit, Ashutosh
@ 2025-01-21 14:22 ` Pottumuttu, Sai Teja
1 sibling, 0 replies; 9+ messages in thread
From: Pottumuttu, Sai Teja @ 2025-01-21 14:22 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: igt-dev
On 17-01-2025 06:28, Dixit, Ashutosh wrote:
> On Thu, 16 Jan 2025 05:54:56 -0800, Sai Teja Pottumuttu wrote:
>>
>
> Hi Sai Teja,
>
>> Extend non-zero-reason test to use configurable OA buffer sizes and
>> execute the test for three different sizes 8,16 and 32MB.
>
> I made a few changes to the patch and posted a v2. Please take a look. I
> have tested these changes, so no need to test again.
Hello Ashutosh,
Thanks for the changes. As discussed, I have posted a v3 with the changes.
Link: https://patchwork.freedesktop.org/series/142128/#rev3
>
> A single patch generally doesn't need a cover letter.
I just thought that it would be good to have all these patch variants
grouped together, so had the cover letter.
>
> I am seeing consistent failures with 32 MB OA buffer size (reason seems to
> 0 somehow) on Xe1. Did you see these failures on Xe2? So I think we should
> drop the 32 MB size test.
Yeah, looks like there is a consistent failure for 32MB size especially
with Xe1 integrated platforms, we will look into this.
I didn't see any failures with Xe2 though.
>
> Rest looks good and I have R-b'd the v2. If you like my changes you can R-b
> v2 too :-)
I didn't retain the R-b on my v3 as there were changes, it would be
great if you can take a look and R-b again
Thank You,
Sai Teja
>
> Thanks.
> --
> Ashutosh
>
>
>>
>> Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
>> ---
>> tests/intel/xe_oa.c | 30 +++++++++++++++++++++++++++---
>> 1 file changed, 27 insertions(+), 3 deletions(-)
>>
>> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
>> index 492a6b5d6..f28156a66 100644
>> --- a/tests/intel/xe_oa.c
>> +++ b/tests/intel/xe_oa.c
>> @@ -2504,7 +2504,7 @@ again_1:
>> * Description: Test reason field is non-zero. Can also check OA buffer wraparound issues
>> */
>> static void
>> -test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe)
>> +test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe, size_t oa_buffer_size)
>> {
>> /* ~20 micro second period */
>> int oa_exponent = max_oa_exponent_for_period_lte(20000);
>> @@ -2522,6 +2522,7 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe)
>> DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(fmt),
>> DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, oa_exponent,
>> DRM_XE_OA_PROPERTY_OA_ENGINE_INSTANCE, hwe->engine_instance,
>> + DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, oa_buffer_size,
>> };
>> struct intel_xe_oa_open_prop param = {
>> .num_properties = ARRAY_SIZE(properties) / 2,
>> @@ -2541,6 +2542,9 @@ test_non_zero_reason(const struct drm_xe_engine_class_instance *hwe)
>> load_helper_init();
>> load_helper_run(HIGH);
>>
>> + if (!oa_buffer_size)
>> + param.num_properties = param.num_properties - 1;
>> +
>> stream_fd = __perf_open(drm_fd, ¶m, true /* prevent_pm */);
>> set_fd_flags(stream_fd, O_CLOEXEC);
>>
>> @@ -4867,8 +4871,28 @@ igt_main
>> test_buffer_fill(hwe);
>>
>> igt_subtest_with_dynamic("non-zero-reason") {
>> - __for_one_hwe_in_oag(hwe)
>> - test_non_zero_reason(hwe);
>> + struct drm_xe_query_oa_units *qoa = xe_oa_units(drm_fd);
>> + struct drm_xe_oa_unit *oau = (struct drm_xe_oa_unit *)&qoa->oa_units[0];
>> +
>> + if (oau->capabilities & DRM_XE_OA_CAPS_OA_BUFFER_SIZE) {
>> + hwe = oa_unit_engine(drm_fd, 0);
>> + if (hwe) {
>> + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class),
>> + hwe->engine_instance, "8MB")
>> + test_non_zero_reason(hwe, SZ_8M);
>> +
>> + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class),
>> + hwe->engine_instance, "16MB")
>> + test_non_zero_reason(hwe, SZ_16M);
>> +
>> + igt_dynamic_f("%s-%d-%s", xe_engine_class_name(hwe->engine_class),
>> + hwe->engine_instance, "32MB")
>> + test_non_zero_reason(hwe, SZ_32M);
>> + }
>> + } else {
>> + __for_one_hwe_in_oag(hwe)
>> + test_non_zero_reason(hwe, 0);
>> + }
>> }
>>
>> igt_subtest("disabled-read-error")
>> --
>> 2.34.1
>>
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-01-21 14:23 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-16 13:54 [PATCH i-g-t v2 0/1] Add test for configurable OA buffer size Sai Teja Pottumuttu
2025-01-16 13:54 ` [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Extend non-zero-reason test Sai Teja Pottumuttu
2025-01-17 0:58 ` Dixit, Ashutosh
2025-01-17 1:00 ` Dixit, Ashutosh
2025-01-21 14:22 ` Pottumuttu, Sai Teja
2025-01-17 4:00 ` ✓ Xe.CI.BAT: success for Add test for configurable OA buffer size (rev2) Patchwork
2025-01-17 4:01 ` ✓ i915.CI.BAT: " Patchwork
2025-01-17 8:18 ` ✗ Xe.CI.Full: failure " Patchwork
2025-01-18 1:43 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox