* [PATCH i-g-t] lib/xe/oa: Don't skip if freq sysfs are not present
@ 2024-10-21 18:12 Ashutosh Dixit
2024-10-21 20:55 ` Umesh Nerlige Ramappa
0 siblings, 1 reply; 9+ messages in thread
From: Ashutosh Dixit @ 2024-10-21 18:12 UTC (permalink / raw)
To: igt-dev
Freq sysfs are not created in certain environments. In most of these cases
OA IGT's will work just fine, even when GT min/max freq's are not
known. Therefore, just print a warning if freq sysfs are not present but
don't cause tests to skip.
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
lib/xe/xe_oa.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/lib/xe/xe_oa.c b/lib/xe/xe_oa.c
index 86264230c9..189388b76b 100644
--- a/lib/xe/xe_oa.c
+++ b/lib/xe/xe_oa.c
@@ -571,11 +571,9 @@ xe_perf_for_fd(int drm_fd, int gt)
}
if (!read_sysfs(sysfs_dir_fd, path_min, >_min_freq) ||
- !read_sysfs(sysfs_dir_fd, path_max, >_max_freq)) {
+ !read_sysfs(sysfs_dir_fd, path_max, >_max_freq))
igt_warn("Unable to read freqs from sysfs\n");
- close(sysfs_dir_fd);
- return NULL;
- }
+
close(sysfs_dir_fd);
device_id = intel_get_drm_devid(drm_fd);
--
2.41.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t] lib/xe/oa: Don't skip if freq sysfs are not present
2024-10-21 18:12 [PATCH i-g-t] lib/xe/oa: Don't skip if freq sysfs are not present Ashutosh Dixit
@ 2024-10-21 20:55 ` Umesh Nerlige Ramappa
2024-10-21 21:03 ` Dixit, Ashutosh
0 siblings, 1 reply; 9+ messages in thread
From: Umesh Nerlige Ramappa @ 2024-10-21 20:55 UTC (permalink / raw)
To: Ashutosh Dixit; +Cc: igt-dev
On Mon, Oct 21, 2024 at 11:12:03AM -0700, Ashutosh Dixit wrote:
>Freq sysfs are not created in certain environments. In most of these cases
>OA IGT's will work just fine, even when GT min/max freq's are not
>known. Therefore, just print a warning if freq sysfs are not present but
>don't cause tests to skip.
>
>Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
>---
> lib/xe/xe_oa.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
>diff --git a/lib/xe/xe_oa.c b/lib/xe/xe_oa.c
>index 86264230c9..189388b76b 100644
>--- a/lib/xe/xe_oa.c
>+++ b/lib/xe/xe_oa.c
>@@ -571,11 +571,9 @@ xe_perf_for_fd(int drm_fd, int gt)
> }
>
> if (!read_sysfs(sysfs_dir_fd, path_min, >_min_freq) ||
>- !read_sysfs(sysfs_dir_fd, path_max, >_max_freq)) {
>+ !read_sysfs(sysfs_dir_fd, path_max, >_max_freq))
> igt_warn("Unable to read freqs from sysfs\n");
1) Well.. you would still end up with an igt_warn. CI will still
complain, I guess. Is that acceptable?
2) If called from an application (i.e. gpuvis), does the igt_warn show
up in stdout?
For IGT, I don't see oa tests using this, so it's probably okay. If the
answer for 1 and 2 is yes, then this is
Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Thanks,
Umesh
>- close(sysfs_dir_fd);
>- return NULL;
>- }
>+
> close(sysfs_dir_fd);
>
> device_id = intel_get_drm_devid(drm_fd);
>--
>2.41.0
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t] lib/xe/oa: Don't skip if freq sysfs are not present
2024-10-21 20:55 ` Umesh Nerlige Ramappa
@ 2024-10-21 21:03 ` Dixit, Ashutosh
0 siblings, 0 replies; 9+ messages in thread
From: Dixit, Ashutosh @ 2024-10-21 21:03 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
On Mon, 21 Oct 2024 13:55:29 -0700, Umesh Nerlige Ramappa wrote:
>
Hi Umesh,
> On Mon, Oct 21, 2024 at 11:12:03AM -0700, Ashutosh Dixit wrote:
> > Freq sysfs are not created in certain environments. In most of these cases
> > OA IGT's will work just fine, even when GT min/max freq's are not
> > known. Therefore, just print a warning if freq sysfs are not present but
> > don't cause tests to skip.
> >
> > Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
> > ---
> > lib/xe/xe_oa.c | 6 ++----
> > 1 file changed, 2 insertions(+), 4 deletions(-)
> >
> > diff --git a/lib/xe/xe_oa.c b/lib/xe/xe_oa.c
> > index 86264230c9..189388b76b 100644
> > --- a/lib/xe/xe_oa.c
> > +++ b/lib/xe/xe_oa.c
> > @@ -571,11 +571,9 @@ xe_perf_for_fd(int drm_fd, int gt)
> > }
> >
> > if (!read_sysfs(sysfs_dir_fd, path_min, >_min_freq) ||
> > - !read_sysfs(sysfs_dir_fd, path_max, >_max_freq)) {
> > + !read_sysfs(sysfs_dir_fd, path_max, >_max_freq))
> > igt_warn("Unable to read freqs from sysfs\n");
>
> 1) Well.. you would still end up with an igt_warn. CI will still complain,
> I guess. Is that acceptable?
I don't know if igt_warn causes CI to create a bug or only dmesg-warn does
that? Let me change to igt_info (or igt_debug).
>
> 2) If called from an application (i.e. gpuvis), does the igt_warn show up
> in stdout?
Yes igt_warn/info etc will show in stdout or stderr.
> For IGT, I don't see oa tests using this, so it's probably okay. If the
> answer for 1 and 2 is yes, then this is
Not upstream tests.
>
> Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Thanks but will post another version.
--
Ashutosh
> > - close(sysfs_dir_fd);
> > - return NULL;
> > - }
> > +
> > close(sysfs_dir_fd);
> >
> > device_id = intel_get_drm_devid(drm_fd);
> > --
> > 2.41.0
> >
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t] lib/xe/oa: Don't skip if freq sysfs are not present
@ 2024-10-21 21:42 Ashutosh Dixit
2024-10-21 23:11 ` ✓ Fi.CI.BAT: success for lib/xe/oa: Don't skip if freq sysfs are not present (rev2) Patchwork
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Ashutosh Dixit @ 2024-10-21 21:42 UTC (permalink / raw)
To: igt-dev; +Cc: Umesh Nerlige Ramappa
Freq sysfs are not created in certain environments. In most of these cases
OA IGT's will work just fine, even when GT min/max freq's are not
known. Therefore, just print a warning if freq sysfs are not present but
don't cause tests to skip.
v2: Change igt_warn to igt_info in case CI doesn't like warn (Umesh)
Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
lib/xe/xe_oa.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/lib/xe/xe_oa.c b/lib/xe/xe_oa.c
index 86264230c9..4fdd0b8c95 100644
--- a/lib/xe/xe_oa.c
+++ b/lib/xe/xe_oa.c
@@ -571,11 +571,9 @@ xe_perf_for_fd(int drm_fd, int gt)
}
if (!read_sysfs(sysfs_dir_fd, path_min, >_min_freq) ||
- !read_sysfs(sysfs_dir_fd, path_max, >_max_freq)) {
- igt_warn("Unable to read freqs from sysfs\n");
- close(sysfs_dir_fd);
- return NULL;
- }
+ !read_sysfs(sysfs_dir_fd, path_max, >_max_freq))
+ igt_info("Unable to read freqs from sysfs\n");
+
close(sysfs_dir_fd);
device_id = intel_get_drm_devid(drm_fd);
--
2.41.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for lib/xe/oa: Don't skip if freq sysfs are not present (rev2)
2024-10-21 21:42 [PATCH i-g-t] lib/xe/oa: Don't skip if freq sysfs are not present Ashutosh Dixit
@ 2024-10-21 23:11 ` Patchwork
2024-10-21 23:22 ` ✓ CI.xeBAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-10-21 23:11 UTC (permalink / raw)
To: Ashutosh Dixit; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 12932 bytes --]
== Series Details ==
Series: lib/xe/oa: Don't skip if freq sysfs are not present (rev2)
URL : https://patchwork.freedesktop.org/series/140269/
State : success
== Summary ==
CI Bug Log - changes from IGT_8080 -> IGTPW_11947
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/index.html
Participating hosts (43 -> 44)
------------------------------
Additional (3): bat-apl-1 bat-dg2-9 fi-kbl-8809g
Missing (2): fi-snb-2520m bat-dg1-6
Known issues
------------
Here are the changes found in IGTPW_11947 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@eof:
- bat-dg2-9: NOTRUN -> [SKIP][1] ([i915#2582]) +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@fbdev@eof.html
* igt@fbdev@info:
- bat-dg2-9: NOTRUN -> [SKIP][2] ([i915#1849] / [i915#2582])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@fbdev@info.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-8809g: NOTRUN -> [SKIP][3] ([i915#2190])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html
- bat-apl-1: NOTRUN -> [SKIP][4] +23 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-apl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-kbl-8809g: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/fi-kbl-8809g/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#4083])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][7] ([i915#4077]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@gem_mmap_gtt@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#4079]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-9: NOTRUN -> [SKIP][9] ([i915#11681] / [i915#6621])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [PASS][10] -> [ABORT][11] ([i915#12216]) +1 other test abort
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][12] ([i915#4212] / [i915#5190])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][13] ([i915#4212] / [i915#4215] / [i915#5190])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][14] ([i915#4212]) +7 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_dsc@dsc-basic:
- fi-kbl-8809g: NOTRUN -> [SKIP][15] +30 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/fi-kbl-8809g/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-dg2-9: NOTRUN -> [SKIP][16] ([i915#5354]) +5 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-9: NOTRUN -> [SKIP][17]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-9: NOTRUN -> [SKIP][18] ([i915#5274])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@hang-read-crc:
- bat-dg2-9: NOTRUN -> [SKIP][19] ([i915#9197]) +16 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@kms_pipe_crc_basic@hang-read-crc.html
* igt@kms_psr@psr-primary-page-flip:
- bat-dg2-9: NOTRUN -> [SKIP][20] ([i915#1072] / [i915#9732]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][21] ([i915#3555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-9: NOTRUN -> [SKIP][22] ([i915#3708] / [i915#9197])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-9: NOTRUN -> [SKIP][23] ([i915#3708] / [i915#4077]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][24] ([i915#3291] / [i915#3708]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-9/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-arlh-3: [ABORT][25] ([i915#12133]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-3/igt@i915_selftest@live.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-arlh-3/igt@i915_selftest@live.html
- bat-arlh-2: [ABORT][27] ([i915#12133]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-2/igt@i915_selftest@live.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-arlh-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [ABORT][29] ([i915#12061]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-arlh-2: [ABORT][31] ([i915#12061]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-arlh-2/igt@i915_selftest@live@workarounds.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-6: [SKIP][33] ([i915#5190] / [i915#9792]) -> [SKIP][34] ([i915#4212] / [i915#5190] / [i915#9792])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-11: [SKIP][35] ([i915#5190]) -> [SKIP][36] ([i915#4212] / [i915#5190])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-14: [SKIP][37] ([i915#5190]) -> [SKIP][38] ([i915#4212] / [i915#5190])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-mtlp-8: [SKIP][39] ([i915#5190]) -> [SKIP][40] ([i915#4212] / [i915#5190])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-8: [SKIP][41] ([i915#5190]) -> [SKIP][42] ([i915#4212] / [i915#5190])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-8: [SKIP][43] ([i915#4215] / [i915#5190]) -> [SKIP][44] ([i915#4212] / [i915#4215] / [i915#5190])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg1-7: [SKIP][45] ([i915#4215]) -> [SKIP][46] ([i915#4212] / [i915#4215])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-11: [SKIP][47] ([i915#4215] / [i915#5190]) -> [SKIP][48] ([i915#4212] / [i915#4215] / [i915#5190])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-14: [SKIP][49] ([i915#4215] / [i915#5190]) -> [SKIP][50] ([i915#4212] / [i915#4215] / [i915#5190])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8080 -> IGTPW_11947
* Linux: CI_DRM_15559 -> CI_DRM_15574
CI-20190529: 20190529
CI_DRM_15559: c1837d4e9af4e9df3109960341105c035b441667 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15574: aa0898115bcff3eda6d021cc66eb8a1c3b264c56 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11947: 7d59263488cf3212d0c6595477698cc63e5b3696 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/index.html
[-- Attachment #2: Type: text/html, Size: 17482 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.xeBAT: success for lib/xe/oa: Don't skip if freq sysfs are not present (rev2)
2024-10-21 21:42 [PATCH i-g-t] lib/xe/oa: Don't skip if freq sysfs are not present Ashutosh Dixit
2024-10-21 23:11 ` ✓ Fi.CI.BAT: success for lib/xe/oa: Don't skip if freq sysfs are not present (rev2) Patchwork
@ 2024-10-21 23:22 ` Patchwork
2024-10-22 5:14 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-10-22 6:28 ` ✓ CI.xeFULL: success " Patchwork
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-10-21 23:22 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7182 bytes --]
== Series Details ==
Series: lib/xe/oa: Don't skip if freq sysfs are not present (rev2)
URL : https://patchwork.freedesktop.org/series/140269/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8080_BAT -> XEIGTPW_11947_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11947_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_evict@evict-beng-small:
- bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/bat-adlp-7/igt@xe_evict@evict-beng-small.html
* igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate:
- bat-lnl-1: [PASS][2] -> [FAIL][3] ([Intel XE#2754])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-lnl-1/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/bat-lnl-1/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr:
- bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#288]) +32 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch:
- bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#288]) +32 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-bmg-1: [PASS][6] -> [INCOMPLETE][7] ([Intel XE#2874] / [Intel XE#2998]) +1 other test incomplete
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-dg2-oem2: NOTRUN -> [SKIP][8] ([Intel XE#2229])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- bat-adlp-7: NOTRUN -> [SKIP][9] ([Intel XE#2229])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
#### Possible fixes ####
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-adlp-7: [INCOMPLETE][10] ([Intel XE#2874]) -> [PASS][11] +1 other test pass
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
- bat-dg2-oem2: [INCOMPLETE][12] ([Intel XE#2874]) -> [PASS][13] +1 other test pass
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
#### Warnings ####
* igt@xe_pat@pat-index-xe2:
- bat-atsm-2: [SKIP][14] ([Intel XE#977]) -> [SKIP][15] ([Intel XE#2839] / [Intel XE#977])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-atsm-2/igt@xe_pat@pat-index-xe2.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/bat-atsm-2/igt@xe_pat@pat-index-xe2.html
- bat-adlp-vf: [SKIP][16] ([Intel XE#977]) -> [SKIP][17] ([Intel XE#2839] / [Intel XE#977])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-vf/igt@xe_pat@pat-index-xe2.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/bat-adlp-vf/igt@xe_pat@pat-index-xe2.html
- bat-adlp-7: [SKIP][18] ([Intel XE#977]) -> [SKIP][19] ([Intel XE#2839] / [Intel XE#977])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-7/igt@xe_pat@pat-index-xe2.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/bat-adlp-7/igt@xe_pat@pat-index-xe2.html
- bat-dg2-oem2: [SKIP][20] ([Intel XE#977]) -> [SKIP][21] ([Intel XE#2839] / [Intel XE#977])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: [SKIP][22] ([Intel XE#2245]) -> [SKIP][23] ([Intel XE#2237] / [Intel XE#2245])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
- bat-bmg-1: [SKIP][24] ([Intel XE#2245]) -> [SKIP][25] ([Intel XE#2237] / [Intel XE#2245])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-bmg-1/igt@xe_pat@pat-index-xelp.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/bat-bmg-1/igt@xe_pat@pat-index-xelp.html
- bat-lnl-2: [SKIP][26] ([Intel XE#977]) -> [SKIP][27] ([Intel XE#2237] / [Intel XE#977])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-lnl-2/igt@xe_pat@pat-index-xelp.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/bat-lnl-2/igt@xe_pat@pat-index-xelp.html
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2237
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754
[Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839
[Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* IGT: IGT_8080 -> IGTPW_11947
* Linux: xe-2091-c1837d4e9af4e9df3109960341105c035b441667 -> xe-2106-aa0898115bcff3eda6d021cc66eb8a1c3b264c56
IGTPW_11947: 7d59263488cf3212d0c6595477698cc63e5b3696 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2091-c1837d4e9af4e9df3109960341105c035b441667: c1837d4e9af4e9df3109960341105c035b441667
xe-2106-aa0898115bcff3eda6d021cc66eb8a1c3b264c56: aa0898115bcff3eda6d021cc66eb8a1c3b264c56
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/index.html
[-- Attachment #2: Type: text/html, Size: 9419 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for lib/xe/oa: Don't skip if freq sysfs are not present (rev2)
2024-10-21 21:42 [PATCH i-g-t] lib/xe/oa: Don't skip if freq sysfs are not present Ashutosh Dixit
2024-10-21 23:11 ` ✓ Fi.CI.BAT: success for lib/xe/oa: Don't skip if freq sysfs are not present (rev2) Patchwork
2024-10-21 23:22 ` ✓ CI.xeBAT: " Patchwork
@ 2024-10-22 5:14 ` Patchwork
2024-10-22 9:19 ` Kamil Konieczny
2024-10-22 6:28 ` ✓ CI.xeFULL: success " Patchwork
3 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2024-10-22 5:14 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100278 bytes --]
== Series Details ==
Series: lib/xe/oa: Don't skip if freq sysfs are not present (rev2)
URL : https://patchwork.freedesktop.org/series/140269/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15574_full -> IGTPW_11947_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11947_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11947_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_11947/index.html
Participating hosts (8 -> 7)
------------------------------
Missing (1): shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11947_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_lmem_swapping@parallel-random:
- shard-dg2: [PASS][1] -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-10/igt@gem_lmem_swapping@parallel-random.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@gem_lmem_swapping@parallel-random.html
Known issues
------------
Here are the changes found in IGTPW_11947_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-10/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-4/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-17/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-2/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg2: [PASS][7] -> [ABORT][8] ([i915#5507])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@device_reset@unbind-reset-rebind.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-6/igt@device_reset@unbind-reset-rebind.html
- shard-rkl: [PASS][9] -> [ABORT][10] ([i915#5507])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-7/igt@device_reset@unbind-reset-rebind.html
- shard-tglu: [PASS][11] -> [ABORT][12] ([i915#5507])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-6/igt@device_reset@unbind-reset-rebind.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-8/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy@ccs0:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +17 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@drm_fdinfo@busy@ccs0.html
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) +7 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-5/igt@drm_fdinfo@busy@vcs0.html
* igt@drm_fdinfo@busy@vcs1:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#8414]) +7 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-18/igt@drm_fdinfo@busy@vcs1.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy.html
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-18/igt@gem_ccs@ctrl-surf-copy.html
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-2/igt@gem_ccs@ctrl-surf-copy.html
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-2/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#7697])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@gem_close_race@multigpu-basic-threads.html
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#7697])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-14/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#6335])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_engines@invalid-engines:
- shard-tglu: NOTRUN -> [FAIL][23] ([i915#12031])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-4/igt@gem_ctx_engines@invalid-engines.html
- shard-mtlp: [PASS][24] -> [FAIL][25] ([i915#12027] / [i915#12031])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-3/igt@gem_ctx_engines@invalid-engines.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-3/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@gem_ctx_sseu@engines.html
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-3/igt@gem_ctx_sseu@engines.html
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-18/igt@gem_ctx_sseu@engines.html
- shard-tglu: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-10/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@hibernate:
- shard-tglu: [PASS][30] -> [ABORT][31] ([i915#10030] / [i915#7975] / [i915#8213])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-4/igt@gem_eio@hibernate.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-10/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg2: [PASS][32] -> [FAIL][33] ([i915#5784])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-6/igt@gem_eio@kms.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4812]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-1/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-7/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][36] -> [FAIL][37] ([i915#2846])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-18/igt@gem_exec_fair@basic-none.html
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4473] / [i915#4771]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-7/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-solo:
- shard-tglu: NOTRUN -> [FAIL][40] ([i915#2842]) +7 other tests fail
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-3/igt@gem_exec_fair@basic-none-solo.html
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-10/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: NOTRUN -> [FAIL][42] ([i915#2842]) +6 other tests fail
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-3/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][43] -> [FAIL][44] ([i915#2842]) +1 other test fail
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@gem_exec_flush@basic-uc-prw-default.html
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-15/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#5107])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-2/igt@gem_exec_params@rsvd2-dirt.html
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#5107])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +13 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +7 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +7 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-2/igt@gem_exec_reloc@basic-wc-noreloc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#3281]) +11 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-18/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@pi-ringfull@ccs0:
- shard-dg2: NOTRUN -> [FAIL][53] ([i915#12296]) +7 other tests fail
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-1/igt@gem_exec_schedule@pi-ringfull@ccs0.html
- shard-mtlp: NOTRUN -> [FAIL][54] ([i915#12296]) +6 other tests fail
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-1/igt@gem_exec_schedule@pi-ringfull@ccs0.html
* igt@gem_exec_schedule@pi-ringfull@rcs0:
- shard-rkl: NOTRUN -> [FAIL][55] ([i915#12296]) +4 other tests fail
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-1/igt@gem_exec_schedule@pi-ringfull@rcs0.html
- shard-dg1: NOTRUN -> [FAIL][56] ([i915#12296]) +5 other tests fail
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-16/igt@gem_exec_schedule@pi-ringfull@rcs0.html
- shard-tglu: NOTRUN -> [FAIL][57] ([i915#12296]) +5 other tests fail
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-3/igt@gem_exec_schedule@pi-ringfull@rcs0.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4537] / [i915#4812])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-1/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#7276])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-1/igt@gem_exec_schedule@semaphore-power.html
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4812]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-16/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4860]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@gem_fence_thrash@bo-copy.html
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4860])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-1/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4860]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#4613]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-4/igt@gem_lmem_swapping@heavy-multi.html
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4613])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-8/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][67] ([i915#4613]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-3/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8289])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-5/igt@gem_media_fill@media-fill.html
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#8289])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@bad-object:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4083])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-18/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4077]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-19/igt@gem_mmap_gtt@basic-small-copy.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4077]) +9 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-5/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_gtt@hang-busy:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4077]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-3/igt@gem_mmap_gtt@hang-busy.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#4083])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3282]) +8 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-6/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#3282]) +6 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-19/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][77] ([i915#2658])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-3/igt@gem_pwrite@basic-exhaustion.html
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3282]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-1/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4270]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#4270])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-4/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-13/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-tglu: NOTRUN -> [SKIP][82] ([i915#4270]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-9/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_readwrite@beyond-eob:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#3282]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-4/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8428]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-6/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#5190] / [i915#8428]) +7 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-7/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4079])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-15/igt@gem_set_tiling_vs_gtt.html
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4079]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4885]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-10/igt@gem_softpin@evict-snoop-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#4885])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-17/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-19/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3297])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-3/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-4/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#2527]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-7/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#2856]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@gen9_exec_parse@secure-batches.html
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#2527]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-13/igt@gen9_exec_parse@secure-batches.html
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#2856])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-8/igt@gen9_exec_parse@secure-batches.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#8399])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-5/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#8399])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [PASS][102] -> [FAIL][103] ([i915#3591]) +1 other test fail
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#11681] / [i915#6621]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#11681] / [i915#6621]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-19/igt@i915_pm_rps@min-max-config-idle.html
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#11681] / [i915#6621])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-6/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-idle:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#11681])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-3/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#11681])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-5/igt@i915_pm_rps@thresholds-park.html
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#11681]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-12/igt@i915_pm_rps@thresholds-park.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][110] -> [INCOMPLETE][111] ([i915#4817])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#4212])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-3/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4212]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#4212]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-12/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#8709]) +11 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#9531])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-19/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#1769] / [i915#3555])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#1769] / [i915#3555])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-transition:
- shard-dg2: [PASS][119] -> [SKIP][120] ([i915#9197]) +16 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_atomic_transition@plane-all-transition.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_atomic_transition@plane-all-transition.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5286]) +4 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#5286]) +5 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-2/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#5286]) +4 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#5286])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#3638]) +5 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-17/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][126] +7 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-2/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-mtlp: [PASS][127] -> [ABORT][128] ([i915#10354])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-3/igt@kms_big_fb@linear-8bpp-rotate-180.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-1/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#3638]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-1/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#5190] / [i915#9197])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +10 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6095]) +44 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#12313]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#6095]) +187 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#12313]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-12/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#12313]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#6095]) +34 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-9/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#12313]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#12313]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#6095]) +68 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#6095]) +113 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#11616] / [i915#7213])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#7213]) +3 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#4087]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#7828]) +8 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@kms_chamelium_edid@dp-mode-timings.html
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#7828]) +5 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-19/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#7828]) +6 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#7828]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#7828]) +4 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-7/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-3/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#3299])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#3116] / [i915#3299])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-3/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [TIMEOUT][155] ([i915#7173])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-10/igt@kms_content_protection@lic-type-0@pipe-a-dp-3.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#9424])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-4/igt@kms_content_protection@mei-interface.html
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#9433])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-13/igt@kms_content_protection@mei-interface.html
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#8063] / [i915#9433])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-7/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#7116] / [i915#9424]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-15/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#6944] / [i915#9424])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-1/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#6944] / [i915#9424])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-4/igt@kms_content_protection@uevent.html
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#7118] / [i915#9424])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-1/igt@kms_content_protection@uevent.html
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#7118] / [i915#9424])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#3555]) +7 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-32x10.html
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#3555]) +4 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8814])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#8814]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#11453] / [i915#3359])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#11453] / [i915#3359])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#4103] / [i915#4213])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-19/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#4213])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#4103] / [i915#4213])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#4103]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#4103]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#8588])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#8588])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-3/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#8588])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-18/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#8588])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-10/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#8588])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-7/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#3840])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-7/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#2065] / [i915#4854])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-4/igt@kms_feature_discovery@chamelium.html
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#4854])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-3/igt@kms_feature_discovery@chamelium.html
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#4854])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-5/igt@kms_feature_discovery@chamelium.html
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#4854])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-5/igt@kms_feature_discovery@chamelium.html
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#4854])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-12/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#1839])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_feature_discovery@display-4x.html
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#1839])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-19/igt@kms_feature_discovery@display-4x.html
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#1839])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-6/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#3637]) +4 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][191] +9 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-1/igt@kms_flip@2x-flip-vs-dpms.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#9934]) +4 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-16/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3637]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-5/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][194] -> [INCOMPLETE][195] ([i915#4839]) +1 other test incomplete
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg1: [PASS][196] -> [INCOMPLETE][197] ([i915#4839] / [i915#6113])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3:
- shard-dg1: [PASS][198] -> [INCOMPLETE][199] ([i915#6113])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-tglu: [PASS][200] -> [FAIL][201] ([i915#2122]) +1 other test fail
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-tglu: NOTRUN -> [FAIL][202] ([i915#2122]) +1 other test fail
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-8/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-mtlp: [PASS][203] -> [FAIL][204] ([i915#2122]) +5 other tests fail
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-1/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_flip@plain-flip-fb-recreate@a-vga1:
- shard-snb: [PASS][205] -> [FAIL][206] ([i915#2122]) +11 other tests fail
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb2/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-snb6/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#2672] / [i915#3555]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#2587] / [i915#2672]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-dg2: [PASS][209] -> [SKIP][210] ([i915#3555]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#2672] / [i915#3555])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#2672] / [i915#3555])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#2672])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-1/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: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#3555]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8813])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8810])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555] / [i915#5190]) +4 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#2672]) +7 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render:
- shard-dg2: [PASS][220] -> [SKIP][221] ([i915#5354]) +6 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#8708]) +17 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite:
- shard-snb: [PASS][223] -> [SKIP][224]
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][225] +35 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][226] +57 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#1825]) +12 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#8708]) +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg2: [PASS][229] -> [FAIL][230] ([i915#6880])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#8708]) +11 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#5354]) +47 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#9766])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#3458]) +12 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#3458]) +18 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#1825]) +19 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#3023]) +12 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228]) +2 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-8/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228]) +3 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-1/igt@kms_hdr@invalid-metadata-sizes.html
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228]) +2 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes.html
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228]) +2 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-16/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: [PASS][242] -> [SKIP][243] ([i915#3555] / [i915#8228])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#10656])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#12339])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-5/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#12339])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-12/igt@kms_joiner@basic-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#12339])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-3/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][248] +13 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][249] ([i915#8292])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-3.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][250] ([i915#8292])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@invalid-num-scalers:
- shard-dg2: [PASS][251] -> [SKIP][252] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-1/igt@kms_plane_scaling@invalid-num-scalers.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_plane_scaling@invalid-num-scalers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
- shard-dg2: [PASS][253] -> [SKIP][254] ([i915#8152] / [i915#9423])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c:
- shard-dg2: [PASS][255] -> [SKIP][256] ([i915#12247]) +8 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#12247]) +9 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- shard-dg2: [PASS][258] -> [SKIP][259] ([i915#3555] / [i915#8152] / [i915#9423])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d:
- shard-dg2: [PASS][260] -> [SKIP][261] ([i915#8152]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#12247] / [i915#9423])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#12247]) +2 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#12247]) +8 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#12247]) +10 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#12247]) +8 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#12247] / [i915#3555] / [i915#9423])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#12247] / [i915#3555])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-13/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-dg2: [PASS][269] -> [SKIP][270] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d:
- shard-dg2: [PASS][271] -> [SKIP][272] ([i915#12247] / [i915#8152])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#12247] / [i915#3555] / [i915#6953])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#12247] / [i915#8152])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#5354])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-4/igt@kms_pm_backlight@bad-brightness.html
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#5354])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-13/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#9812]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-6/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#9292])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#9293])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-6/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#9685]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@kms_pm_dc@dc5-psr.html
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#9685]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-19/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#3361])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][284] -> [SKIP][285] ([i915#9340])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#8430])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-10/igt@kms_pm_lpsp@screens-disabled.html
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#8430])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-4/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#8430])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#8430])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-6/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][290] -> [SKIP][291] ([i915#9519])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#9519])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#9519]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-rkl: [PASS][294] -> [SKIP][295] ([i915#9519])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#9519])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@d3hot:
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#6524])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-14/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][298] ([i915#11520]) +4 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#11520]) +8 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#11520]) +5 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-4/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#12316])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-3/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][302] ([i915#11520])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-snb4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-mtlp: NOTRUN -> [FAIL][303] ([i915#12380])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-4/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#11520]) +5 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-19/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#9683])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@kms_psr2_su@page_flip-nv12.html
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#9683])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-12/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-snb: NOTRUN -> [SKIP][307] +40 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-snb1/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-psr2-primary-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#9688]) +12 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-3/igt@kms_psr@fbc-psr2-primary-mmap-cpu.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#1072] / [i915#9732]) +20 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-14/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#1072] / [i915#9732]) +12 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-1/igt@kms_psr@psr-suspend.html
* igt@kms_psr@psr2-cursor-plane-move:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#1072] / [i915#9732]) +20 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-6/igt@kms_psr@psr2-cursor-plane-move.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#9732]) +14 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-6/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#5190])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#11131] / [i915#4235] / [i915#5190])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#11131] / [i915#4235])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#5289])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#11131] / [i915#4235])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#3555]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][319] ([i915#12231]) +1 other test abort
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-6/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][320] ([i915#8623])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@universal-plane-sanity:
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#9197]) +9 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_universal_plane@universal-plane-sanity.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#11920])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-1/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#9906])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#9906])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-14/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-tglu: NOTRUN -> [SKIP][325] ([i915#9906])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-3/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][326] ([i915#2437])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-13/igt@kms_writeback@writeback-invalid-parameters.html
- shard-tglu: NOTRUN -> [SKIP][327] ([i915#2437])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-9/igt@kms_writeback@writeback-invalid-parameters.html
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#2437])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-7/igt@kms_writeback@writeback-invalid-parameters.html
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#2437])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@kms_writeback@writeback-invalid-parameters.html
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#2437])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-4/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][331] ([i915#4349]) +4 other tests fail
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][332] ([i915#11823])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-5/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#8516])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@perf_pmu@rc6-all-gts.html
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#8516])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][335] ([i915#3708] / [i915#4077]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][336] ([i915#3708])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-4/igt@prime_vgem@basic-read.html
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#3291] / [i915#3708])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-1/igt@prime_vgem@basic-read.html
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#3291] / [i915#3708])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-7/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#3708] / [i915#4077]) +1 other test skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-6/igt@prime_vgem@coherency-gtt.html
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#3708]) +2 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-7/igt@prime_vgem@coherency-gtt.html
- shard-dg1: NOTRUN -> [SKIP][341] ([i915#3708] / [i915#4077]) +1 other test skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-15/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][342] ([i915#3708]) +1 other test skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@prime_vgem@fence-read-hang.html
- shard-dg1: NOTRUN -> [SKIP][343] ([i915#3708]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-14/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#9917])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@sriov_basic@enable-vfs-autoprobe-off.html
#### Possible fixes ####
* igt@gem_exec_balancer@nop:
- shard-mtlp: [DMESG-WARN][345] ([i915#12412]) -> [PASS][346]
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-8/igt@gem_exec_balancer@nop.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-7/igt@gem_exec_balancer@nop.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][347] ([i915#11713]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-8/igt@gem_exec_big@single.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-4/igt@gem_exec_big@single.html
* igt@gem_exec_fair@basic-deadline:
- shard-tglu: [FAIL][349] ([i915#2846]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-6/igt@gem_exec_fair@basic-deadline.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-6/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [FAIL][351] ([i915#2842]) -> [PASS][352] +2 other tests pass
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@i915_suspend@fence-restore-untiled:
- shard-snb: [DMESG-WARN][353] -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb2/igt@i915_suspend@fence-restore-untiled.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-snb6/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_atomic_interruptible@atomic-setmode:
- shard-dg2: [SKIP][355] ([i915#9197]) -> [PASS][356] +17 other tests pass
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_atomic_interruptible@atomic-setmode.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@kms_atomic_interruptible@atomic-setmode.html
* igt@kms_flip@blocking-wf_vblank:
- shard-rkl: [FAIL][357] ([i915#11961] / [i915#2122]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-1/igt@kms_flip@blocking-wf_vblank.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-5/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a2:
- shard-rkl: [FAIL][359] ([i915#11961]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-1/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-5/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html
* igt@kms_flip@blocking-wf_vblank@c-hdmi-a1:
- shard-tglu: [FAIL][361] ([i915#2122]) -> [PASS][362] +5 other tests pass
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-3/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-7/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-snb: [INCOMPLETE][363] -> [PASS][364] +1 other test pass
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible.html
- shard-tglu: [INCOMPLETE][365] -> [PASS][366] +1 other test pass
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-6/igt@kms_flip@plain-flip-ts-check-interruptible.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-6/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1:
- shard-snb: [FAIL][367] ([i915#10826]) -> [PASS][368]
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1.html
* igt@kms_flip@plain-flip-ts-check-interruptible@b-vga1:
- shard-snb: [FAIL][369] ([i915#2122]) -> [PASS][370]
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible@b-vga1.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible@b-vga1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-dg2: [SKIP][371] ([i915#3555]) -> [PASS][372]
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [SKIP][373] ([i915#5354]) -> [PASS][374] +4 other tests pass
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2: [SKIP][375] ([i915#433]) -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-5/igt@kms_hdmi_inject@inject-audio.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-10/igt@kms_hdmi_inject@inject-audio.html
- shard-rkl: [SKIP][377] ([i915#433]) -> [PASS][378]
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-5/igt@kms_hdmi_inject@inject-audio.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-2/igt@kms_hdmi_inject@inject-audio.html
- shard-snb: [SKIP][379] -> [PASS][380] +1 other test pass
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb4/igt@kms_hdmi_inject@inject-audio.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-snb5/igt@kms_hdmi_inject@inject-audio.html
- shard-tglu: [SKIP][381] ([i915#433]) -> [PASS][382]
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-3/igt@kms_hdmi_inject@inject-audio.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-3/igt@kms_hdmi_inject@inject-audio.html
- shard-mtlp: [SKIP][383] ([i915#433]) -> [PASS][384]
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-4/igt@kms_hdmi_inject@inject-audio.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-3/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: [SKIP][385] ([i915#3555] / [i915#8228]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_hdr@bpc-switch.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-10/igt@kms_hdr@bpc-switch.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-dg2: [SKIP][387] ([i915#7294]) -> [PASS][388]
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-1/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_scaling@invalid-parameters:
- shard-dg2: [SKIP][389] ([i915#8152] / [i915#9423]) -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@invalid-parameters.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@kms_plane_scaling@invalid-parameters.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
- shard-dg2: [SKIP][391] ([i915#12247]) -> [PASS][392] +5 other tests pass
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
- shard-dg2: [SKIP][393] ([i915#12247] / [i915#8152]) -> [PASS][394] +1 other test pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- shard-dg2: [SKIP][395] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][396] +1 other test pass
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][397] ([i915#9519]) -> [PASS][398] +1 other test pass
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][399] ([i915#9519]) -> [PASS][400] +1 other test pass
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [FAIL][401] ([IGT#2]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-7/igt@kms_sysfs_edid_timing.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_sysfs_edid_timing.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [FAIL][403] ([i915#4349]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-1/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@most-busy-idle-check-all:
- shard-dg2: [FAIL][405] ([i915#11943]) -> [PASS][406] +1 other test pass
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-7/igt@perf_pmu@most-busy-idle-check-all.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@perf_pmu@most-busy-idle-check-all.html
- shard-dg1: [FAIL][407] ([i915#11943]) -> [PASS][408] +1 other test pass
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-17/igt@perf_pmu@most-busy-idle-check-all.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-19/igt@perf_pmu@most-busy-idle-check-all.html
- shard-mtlp: [FAIL][409] ([i915#11943]) -> [PASS][410] +1 other test pass
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-2/igt@perf_pmu@most-busy-idle-check-all.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-6/igt@perf_pmu@most-busy-idle-check-all.html
#### Warnings ####
* igt@gem_exec_fair@basic-pace:
- shard-rkl: [FAIL][411] ([i915#2842]) -> [FAIL][412] ([i915#12467] / [i915#2842])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-4/igt@gem_exec_fair@basic-pace.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-1/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][413] ([i915#2842]) -> [FAIL][414] ([i915#2876])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [ABORT][415] ([i915#10887] / [i915#9820]) -> [ABORT][416] ([i915#9697] / [i915#9820])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][417] ([i915#10131] / [i915#10887] / [i915#9697]) -> [ABORT][418] ([i915#10131] / [i915#9820])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2: [SKIP][419] ([i915#9197]) -> [SKIP][420] +1 other test skip
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_big_fb@linear-16bpp-rotate-90.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: [SKIP][421] ([i915#5190] / [i915#9197]) -> [SKIP][422] ([i915#4538] / [i915#5190]) +4 other tests skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: [SKIP][423] ([i915#4538] / [i915#5190]) -> [SKIP][424] ([i915#5190] / [i915#9197]) +5 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-dg2: [SKIP][425] ([i915#9197]) -> [SKIP][426] ([i915#10307] / [i915#6095]) +3 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-dg2: [SKIP][427] ([i915#10307] / [i915#6095]) -> [SKIP][428] ([i915#9197]) +2 other tests skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-dg2: [SKIP][429] ([i915#9197]) -> [SKIP][430] ([i915#4087])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_cdclk@plane-scaling.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-8/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-dg1: [SKIP][431] ([i915#4423] / [i915#7828]) -> [SKIP][432] ([i915#7828])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg1-15/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_content_protection@atomic:
- shard-dg2: [SKIP][433] ([i915#9197]) -> [SKIP][434] ([i915#7118] / [i915#9424])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_content_protection@atomic.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: [SKIP][435] ([i915#3299]) -> [SKIP][436] ([i915#9197])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-0.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: [SKIP][437] ([i915#9197]) -> [TIMEOUT][438] ([i915#7173])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_content_protection@lic-type-0.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-10/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: [SKIP][439] ([i915#9424]) -> [SKIP][440] ([i915#8063])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-1/igt@kms_content_protection@mei-interface.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-rkl-5/igt@kms_content_protection@mei-interface.html
- shard-tglu: [SKIP][441] ([i915#6944] / [i915#9424]) -> [SKIP][442] ([i915#8063])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-3/igt@kms_content_protection@mei-interface.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-tglu-7/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: [SKIP][443] ([i915#7118]) -> [SKIP][444] ([i915#9197])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_content_protection@srm.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][445] ([i915#7118] / [i915#9424]) -> [SKIP][446] ([i915#9197])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-5/igt@kms_content_protection@type1.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: [SKIP][447] ([i915#11453] / [i915#3359]) -> [SKIP][448] ([i915#9197]) +2 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: [SKIP][449] ([i915#9197]) -> [SKIP][450] ([i915#3555]) +3 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-4/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-dg2: [SKIP][451] ([i915#5354]) -> [SKIP][452] ([i915#9197]) +2 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: [SKIP][453] ([i915#9197]) -> [SKIP][454] ([i915#5354]) +1 other test skip
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: [SKIP][455] ([i915#9197]) -> [SKIP][456] ([i915#9067])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: [SKIP][457] ([i915#9197]) -> [SKIP][458] ([i915#9833])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-11/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: [SKIP][459] ([i915#8812]) -> [SKIP][460] ([i915#9197])
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-wc.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/index.html
[-- Attachment #2: Type: text/html, Size: 108131 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.xeFULL: success for lib/xe/oa: Don't skip if freq sysfs are not present (rev2)
2024-10-21 21:42 [PATCH i-g-t] lib/xe/oa: Don't skip if freq sysfs are not present Ashutosh Dixit
` (2 preceding siblings ...)
2024-10-22 5:14 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-10-22 6:28 ` Patchwork
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-10-22 6:28 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 76273 bytes --]
== Series Details ==
Series: lib/xe/oa: Don't skip if freq sysfs are not present (rev2)
URL : https://patchwork.freedesktop.org/series/140269/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8080_full -> XEIGTPW_11947_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11947_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: NOTRUN -> [SKIP][1] ([Intel XE#623])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][2] ([Intel XE#873])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@modeset-transition-nonblocking:
- shard-dg2-set2: [PASS][3] -> [SKIP][4] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_atomic_transition@modeset-transition-nonblocking.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_atomic_transition@modeset-transition-nonblocking.html
- shard-lnl: [PASS][5] -> [FAIL][6] ([Intel XE#1701]) +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@kms_atomic_transition@modeset-transition-nonblocking.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-5/igt@kms_atomic_transition@modeset-transition-nonblocking.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#316]) +5 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +5 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#367]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#787]) +69 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2887])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][13] -> [SKIP][14] ([Intel XE#2351] / [Intel XE#2890])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#2907]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3:
- shard-bmg: [PASS][16] -> [FAIL][17] ([Intel XE#2436])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [PASS][19] -> [INCOMPLETE][20] ([Intel XE#1195]) +2 other tests incomplete
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#314]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1152]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2423] / [i915#2575])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#306]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#373]) +7 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2252])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#307])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2320])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-7/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#3007]) +4 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [PASS][31] -> [DMESG-WARN][32] ([Intel XE#877])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#776])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1138])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-464/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][35] -> [FAIL][36] ([Intel XE#301]) +1 other test fail
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][37] -> [FAIL][38] ([Intel XE#301]) +6 other tests fail
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [PASS][39] -> [FAIL][40] ([Intel XE#886]) +5 other tests fail
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_flip@blocking-wf_vblank.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-4/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#2231] / [Intel XE#2890])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#2890])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#455]) +12 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#651]) +20 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [FAIL][46] ([Intel XE#2333])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2311])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#653]) +23 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2313])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#605])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#1503])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_hdr@invalid-hdr.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#2763]) +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- shard-bmg: NOTRUN -> [DMESG-WARN][54] ([Intel XE#3177]) +11 other tests dmesg-warn
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2763]) +8 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1489]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#1489])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#1122])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-436/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-464/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@psr2-cursor-plane-move@edp-1:
- shard-lnl: [PASS][61] -> [FAIL][62] ([Intel XE#2948]) +3 other tests fail
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_psr@psr2-cursor-plane-move@edp-1.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-6/igt@kms_psr@psr2-cursor-plane-move@edp-1.html
* igt@kms_psr@psr2-primary-page-flip@edp-1:
- shard-lnl: [PASS][63] -> [FAIL][64] ([Intel XE#2808]) +1 other test fail
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_psr@psr2-primary-page-flip@edp-1.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-7/igt@kms_psr@psr2-primary-page-flip@edp-1.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#2939])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-lnl: [PASS][66] -> [FAIL][67] ([Intel XE#899]) +1 other test fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#2168])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@kms_vrr@cmrr.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#756])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-466/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_eudebug_online@resume-dss:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1130])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@xe_eudebug_online@resume-dss.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][72] -> [INCOMPLETE][73] ([Intel XE#1473]) +1 other test incomplete
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-once-basic-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2322])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-5/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
* igt@xe_exec_basic@once-rebind:
- shard-dg2-set2: [PASS][75] -> [SKIP][76] ([Intel XE#1130]) +8 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@xe_exec_basic@once-rebind.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@xe_exec_basic@once-rebind.html
* igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate-race:
- shard-lnl: [PASS][77] -> [FAIL][78] ([Intel XE#2754])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate-race.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-6/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-basic-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#288]) +14 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-433/igt@xe_exec_fault_mode@many-basic-prefetch.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-bmg: [PASS][80] -> [INCOMPLETE][81] ([Intel XE#2105])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_reset@parallel-gt-reset.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-2/igt@xe_exec_reset@parallel-gt-reset.html
- shard-dg2-set2: NOTRUN -> [TIMEOUT][82] ([Intel XE#2105])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#2905]) +6 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip-twice:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2905])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-7/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html
* igt@xe_exec_threads@threads-mixed-shared-vm-userptr-rebind:
- shard-bmg: [PASS][85] -> [SKIP][86] ([Intel XE#1130]) +11 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-rebind.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-rebind.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#2229])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][88] ([Intel XE#1999]) +2 other tests fail
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-466/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_oa@missing-sample-flags:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#2541]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-466/igt@xe_oa@missing-sample-flags.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2839] / [Intel XE#977])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#979])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-464/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][92] ([Intel XE#1173]) +1 other test fail
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-464/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3hot-multiple-execs:
- shard-lnl: [PASS][93] -> [DMESG-WARN][94] ([Intel XE#3184])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-5/igt@xe_pm@d3hot-multiple-execs.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-3/igt@xe_pm@d3hot-multiple-execs.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#944]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-434/igt@xe_query@multigpu-query-engines.html
#### Possible fixes ####
* igt@fbdev@write:
- shard-dg2-set2: [SKIP][96] ([Intel XE#2134]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@fbdev@write.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@fbdev@write.html
- shard-bmg: [SKIP][98] ([Intel XE#2134]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@fbdev@write.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@fbdev@write.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-bmg: [SKIP][100] ([Intel XE#829]) -> [PASS][101] +1 other test pass
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
- shard-dg2-set2: [SKIP][102] ([Intel XE#829]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-bmg: [SKIP][104] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-c-dp-2:
- shard-bmg: [FAIL][106] ([Intel XE#2436]) -> [PASS][107] +2 other tests pass
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-c-dp-2.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-c-dp-2.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [SKIP][108] ([Intel XE#3007]) -> [PASS][109] +5 other tests pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-lnl: [FAIL][110] ([Intel XE#1475]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@default-dirtyfb-ioctl:
- shard-bmg: [SKIP][112] ([Intel XE#2231]) -> [PASS][113]
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_dirtyfb@default-dirtyfb-ioctl.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-7/igt@kms_dirtyfb@default-dirtyfb-ioctl.html
* igt@kms_fbcon_fbt@fbc:
- shard-dg2-set2: [SKIP][114] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][115] +1 other test pass
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_fbcon_fbt@fbc.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-466/igt@kms_fbcon_fbt@fbc.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][116] ([Intel XE#301]) -> [PASS][117] +5 other tests pass
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][118] ([Intel XE#1204]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-dg2-set2: [ABORT][120] ([Intel XE#2625]) -> [PASS][121]
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [ABORT][122] -> [PASS][123] +1 other test pass
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [FAIL][124] ([Intel XE#886]) -> [PASS][125] +8 other tests pass
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2:
- shard-bmg: [FAIL][126] ([Intel XE#301]) -> [PASS][127] +3 other tests pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][128] ([Intel XE#783]) -> [PASS][129] +1 other test pass
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][130] ([Intel XE#2890]) -> [PASS][131] +3 other tests pass
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
* igt@kms_lease@lease-invalid-crtc:
- shard-dg2-set2: [SKIP][132] ([Intel XE#3187]) -> [PASS][133] +10 other tests pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_lease@lease-invalid-crtc.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_lease@lease-invalid-crtc.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: [FAIL][134] ([Intel XE#616]) -> [PASS][135] +1 other test pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_plane_cursor@viewport.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-466/igt@kms_plane_cursor@viewport.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][136] ([Intel XE#1430]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_prop_blob@invalid-set-prop-any:
- shard-dg2-set2: [SKIP][138] ([Intel XE#2423] / [i915#2575]) -> [PASS][139] +6 other tests pass
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_prop_blob@invalid-set-prop-any.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-436/igt@kms_prop_blob@invalid-set-prop-any.html
* igt@kms_properties@connector-properties-legacy:
- shard-bmg: [SKIP][140] ([Intel XE#3189]) -> [PASS][141] +10 other tests pass
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_properties@connector-properties-legacy.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-1/igt@kms_properties@connector-properties-legacy.html
* igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
- shard-lnl: [FAIL][142] ([Intel XE#2948]) -> [PASS][143] +1 other test pass
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-6/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-3/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html
* igt@kms_psr@psr2-primary-blt@edp-1:
- shard-lnl: [FAIL][144] ([Intel XE#1649]) -> [PASS][145] +1 other test pass
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_psr@psr2-primary-blt@edp-1.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-7/igt@kms_psr@psr2-primary-blt@edp-1.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-0:
- shard-bmg: [INCOMPLETE][146] -> [PASS][147] +1 other test pass
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-8/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html
* igt@kms_vblank@accuracy-idle:
- shard-lnl: [FAIL][148] ([Intel XE#1523]) -> [PASS][149] +1 other test pass
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_vblank@accuracy-idle.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-7/igt@kms_vblank@accuracy-idle.html
* igt@xe_drm_fdinfo@utilization-others-idle:
- shard-dg2-set2: [SKIP][150] ([Intel XE#1130]) -> [PASS][151] +12 other tests pass
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_drm_fdinfo@utilization-others-idle.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@xe_drm_fdinfo@utilization-others-idle.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [TIMEOUT][152] ([Intel XE#1473]) -> [PASS][153] +1 other test pass
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_compute_mode@many-userptr-invalidate:
- shard-lnl: [DMESG-WARN][154] ([Intel XE#2687]) -> [PASS][155] +2 other tests pass
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@xe_exec_compute_mode@many-userptr-invalidate.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-8/igt@xe_exec_compute_mode@many-userptr-invalidate.html
* igt@xe_exec_compute_mode@non-blocking:
- shard-bmg: [SKIP][156] ([Intel XE#1130]) -> [PASS][157] +16 other tests pass
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_compute_mode@non-blocking.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-2/igt@xe_exec_compute_mode@non-blocking.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [FAIL][158] ([Intel XE#2136]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_module_load@reload-no-display.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@xe_module_load@reload-no-display.html
- shard-dg2-set2: [FAIL][160] ([Intel XE#1204] / [Intel XE#2136]) -> [PASS][161]
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_module_load@reload-no-display.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-433/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@oa-exponents:
- shard-lnl: [FAIL][162] -> [PASS][163] +1 other test pass
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@xe_oa@oa-exponents.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-3/igt@xe_oa@oa-exponents.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-lnl: [FAIL][164] ([Intel XE#2514]) -> [PASS][165] +1 other test pass
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-4/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_pm@d3hot-mocs:
- shard-lnl: [DMESG-WARN][166] ([Intel XE#3184]) -> [PASS][167]
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-3/igt@xe_pm@d3hot-mocs.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-7/igt@xe_pm@d3hot-mocs.html
* igt@xe_pm@s4-basic:
- shard-dg2-set2: [ABORT][168] ([Intel XE#1358]) -> [PASS][169]
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@xe_pm@s4-basic.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@xe_pm@s4-basic.html
* igt@xe_pm_residency@idle-residency-on-exec:
- shard-dg2-set2: [INCOMPLETE][170] ([Intel XE#1195]) -> [PASS][171] +1 other test pass
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_pm_residency@idle-residency-on-exec.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-434/igt@xe_pm_residency@idle-residency-on-exec.html
- shard-bmg: [INCOMPLETE][172] ([Intel XE#2655]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@xe_pm_residency@idle-residency-on-exec.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-2/igt@xe_pm_residency@idle-residency-on-exec.html
#### Warnings ####
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-bmg: [SKIP][174] ([Intel XE#2231]) -> [SKIP][175] ([Intel XE#1124])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-5/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][176] ([Intel XE#829]) -> [SKIP][177] ([Intel XE#1124])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-464/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
- shard-bmg: [SKIP][178] ([Intel XE#829]) -> [SKIP][179] ([Intel XE#1124])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-bmg: [SKIP][180] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][181] ([Intel XE#1124])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
- shard-dg2-set2: [SKIP][182] ([Intel XE#2890]) -> [SKIP][183] ([Intel XE#1124]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: [SKIP][184] ([Intel XE#2423] / [i915#2575]) -> [SKIP][185] ([Intel XE#367])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: [SKIP][186] ([Intel XE#3189]) -> [SKIP][187] ([Intel XE#367])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
- shard-dg2-set2: [SKIP][188] ([Intel XE#3187]) -> [SKIP][189] ([Intel XE#367])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: [SKIP][190] ([Intel XE#367]) -> [SKIP][191] ([Intel XE#2423] / [i915#2575])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
- shard-bmg: [SKIP][192] ([Intel XE#367]) -> [SKIP][193] ([Intel XE#3007])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-bmg: [SKIP][194] -> [SKIP][195] ([Intel XE#2887])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-5/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
- shard-dg2-set2: [SKIP][196] ([Intel XE#829]) -> [SKIP][197] ([Intel XE#455] / [Intel XE#787])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][198] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][199] ([Intel XE#2890])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][200] ([Intel XE#2887]) -> [SKIP][201] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-bmg: [SKIP][202] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][203] ([Intel XE#2887])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
- shard-dg2-set2: [SKIP][204] ([Intel XE#2890]) -> [SKIP][205] ([Intel XE#455] / [Intel XE#787])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: [SKIP][206] ([Intel XE#2231]) -> [SKIP][207] ([Intel XE#2724])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_cdclk@plane-scaling.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-5/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: [SKIP][208] ([Intel XE#2325]) -> [SKIP][209] ([Intel XE#3007])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_chamelium_color@ctm-0-50.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: [SKIP][210] ([Intel XE#3189]) -> [SKIP][211] ([Intel XE#2390])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2-set2: [SKIP][212] ([Intel XE#3187]) -> [SKIP][213] ([Intel XE#307])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_content_protection@dp-mst-type-1.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: [SKIP][214] ([Intel XE#3007]) -> [SKIP][215] ([Intel XE#2341])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_content_protection@lic-type-1.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: [SKIP][216] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][217] ([Intel XE#2244])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-dg2-set2: [SKIP][218] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][219] ([Intel XE#455])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-464/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: [SKIP][220] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][221] ([Intel XE#1695])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-1/igt@kms_fbcon_fbt@fbc.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][222] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][223] ([Intel XE#2311])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html
- shard-dg2-set2: [SKIP][224] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][225] ([Intel XE#651])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt:
- shard-dg2-set2: [SKIP][226] ([Intel XE#3187]) -> [SKIP][227] ([Intel XE#651]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][228] ([Intel XE#651]) -> [SKIP][229] ([Intel XE#2890]) +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
- shard-bmg: [SKIP][230] ([Intel XE#2311]) -> [SKIP][231] ([Intel XE#2231]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][232] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][233] ([Intel XE#2333]) +2 other tests fail
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][234] ([Intel XE#3189]) -> [FAIL][235] ([Intel XE#2333]) +2 other tests fail
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][236] ([Intel XE#3189]) -> [SKIP][237] ([Intel XE#2311]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][238] ([Intel XE#2311]) -> [SKIP][239] ([Intel XE#2231] / [Intel XE#2890])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-bmg: [SKIP][240] ([Intel XE#2231]) -> [SKIP][241] ([Intel XE#2311]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
- shard-dg2-set2: [SKIP][242] ([Intel XE#2890]) -> [SKIP][243] ([Intel XE#651]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][244] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][245] ([Intel XE#2313]) +2 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
- shard-dg2-set2: [SKIP][246] ([Intel XE#2890]) -> [SKIP][247] ([Intel XE#653]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][248] ([Intel XE#3187]) -> [SKIP][249] ([Intel XE#653]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][250] ([Intel XE#783]) -> [SKIP][251] ([Intel XE#653])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][252] ([Intel XE#2313]) -> [SKIP][253] ([Intel XE#2231] / [Intel XE#2890])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
- shard-dg2-set2: [SKIP][254] ([Intel XE#653]) -> [SKIP][255] ([Intel XE#2351] / [Intel XE#2890])
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][256] ([Intel XE#3189]) -> [SKIP][257] ([Intel XE#2313]) +2 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][258] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][259] ([Intel XE#653]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
- shard-bmg: [SKIP][260] ([Intel XE#2231]) -> [SKIP][261] ([Intel XE#2313])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- shard-bmg: [SKIP][262] ([Intel XE#3007]) -> [DMESG-WARN][263] ([Intel XE#3177])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers:
- shard-bmg: [SKIP][264] ([Intel XE#3189]) -> [DMESG-WARN][265] ([Intel XE#3177])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-bmg: [SKIP][266] ([Intel XE#3189]) -> [SKIP][267] ([Intel XE#2763])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-dg2-set2: [SKIP][268] ([Intel XE#3187]) -> [SKIP][269] ([Intel XE#2763] / [Intel XE#455])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- shard-bmg: [SKIP][270] ([Intel XE#3007]) -> [DMESG-WARN][271] ([Intel XE#2566] / [Intel XE#3177])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-5/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-20x20:
- shard-bmg: [DMESG-WARN][272] ([Intel XE#2566]) -> [DMESG-WARN][273] ([Intel XE#2566] / [Intel XE#3177]) +13 other tests dmesg-warn
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: [SKIP][274] ([Intel XE#1489]) -> [SKIP][275] ([Intel XE#2231]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-dg2-set2: [SKIP][276] ([Intel XE#1489]) -> [SKIP][277] ([Intel XE#2890]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][278] ([Intel XE#3187]) -> [SKIP][279] ([Intel XE#1489]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-bmg: [SKIP][280] ([Intel XE#3189]) -> [SKIP][281] ([Intel XE#1489]) +2 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-bmg: [SKIP][282] ([Intel XE#2231]) -> [SKIP][283] ([Intel XE#2234] / [Intel XE#2850])
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-render.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-5/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-dg2-set2: [SKIP][284] ([Intel XE#3187]) -> [SKIP][285] ([Intel XE#2850] / [Intel XE#929])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_psr@fbc-pr-sprite-render.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-bmg: [SKIP][286] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][287] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_psr@fbc-psr2-primary-blt.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-2/igt@kms_psr@fbc-psr2-primary-blt.html
- shard-dg2-set2: [SKIP][288] ([Intel XE#2890]) -> [SKIP][289] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-blt.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-464/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@pr-sprite-blt:
- shard-bmg: [SKIP][290] ([Intel XE#3189]) -> [SKIP][291] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_psr@pr-sprite-blt.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-1/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2-set2: [SKIP][292] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][293] ([Intel XE#2850] / [Intel XE#929])
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_psr@psr-cursor-render.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-436/igt@kms_psr@psr-cursor-render.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: [SKIP][294] ([Intel XE#2423] / [i915#2575]) -> [SKIP][295] ([Intel XE#455]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_vrr@flip-dpms.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@kms_vrr@flip-dpms.html
- shard-bmg: [SKIP][296] ([Intel XE#3007]) -> [SKIP][297] ([Intel XE#1499])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_vrr@flip-dpms.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@max-min:
- shard-bmg: [SKIP][298] ([Intel XE#3189]) -> [SKIP][299] ([Intel XE#1499])
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_vrr@max-min.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-7/igt@kms_vrr@max-min.html
- shard-dg2-set2: [SKIP][300] ([Intel XE#3187]) -> [SKIP][301] ([Intel XE#455])
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_vrr@max-min.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-464/igt@kms_vrr@max-min.html
- shard-lnl: [FAIL][302] ([Intel XE#2443]) -> [FAIL][303] ([Intel XE#1522]) +1 other test fail
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-5/igt@kms_vrr@max-min.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-lnl-7/igt@kms_vrr@max-min.html
* igt@xe_eudebug@discovery-empty-clients:
- shard-bmg: [SKIP][304] ([Intel XE#2905]) -> [SKIP][305] ([Intel XE#1130]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@xe_eudebug@discovery-empty-clients.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@xe_eudebug@discovery-empty-clients.html
- shard-dg2-set2: [SKIP][306] ([Intel XE#2905]) -> [SKIP][307] ([Intel XE#1130])
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_eudebug@discovery-empty-clients.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@xe_eudebug@discovery-empty-clients.html
* igt@xe_eudebug_online@breakpoint-not-in-debug-mode:
- shard-bmg: [SKIP][308] ([Intel XE#1130]) -> [SKIP][309] ([Intel XE#2905])
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-4/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html
- shard-dg2-set2: [SKIP][310] ([Intel XE#1130]) -> [SKIP][311] ([Intel XE#2905])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-433/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][312] ([Intel XE#1473]) -> [INCOMPLETE][313] ([Intel XE#1195] / [Intel XE#1473])
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-large.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-bmg: [SKIP][314] ([Intel XE#1130]) -> [SKIP][315] ([Intel XE#2322])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_basic@multigpu-once-userptr.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-5/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@once-rebind:
- shard-dg2-set2: [SKIP][316] ([Intel XE#288]) -> [SKIP][317] ([Intel XE#1130]) +2 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@xe_exec_fault_mode@once-rebind.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@xe_exec_fault_mode@once-rebind.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: [SKIP][318] ([Intel XE#1130]) -> [SKIP][319] ([Intel XE#288]) +3 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [TIMEOUT][320] ([Intel XE#2961]) -> [TIMEOUT][321] ([Intel XE#2961] / [Intel XE#3191]) +1 other test timeout
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@xe_live_ktest@xe_bo.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-464/igt@xe_live_ktest@xe_bo.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: [SKIP][322] ([Intel XE#1130]) -> [SKIP][323] ([Intel XE#2541])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_oa@closed-fd-and-unmapped-access.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-435/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: [SKIP][324] ([Intel XE#2245]) -> [SKIP][325] ([Intel XE#2237] / [Intel XE#2245])
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@xe_pat@pat-index-xelp.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: [SKIP][326] ([Intel XE#1130]) -> [SKIP][327] ([Intel XE#2284])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_pm@d3cold-multiple-execs.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-bmg-7/igt@xe_pm@d3cold-multiple-execs.html
- shard-dg2-set2: [SKIP][328] ([Intel XE#1130]) -> [SKIP][329] ([Intel XE#2284] / [Intel XE#366])
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_pm@d3cold-multiple-execs.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/shard-dg2-464/igt@xe_pm@d3cold-multiple-execs.html
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#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#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[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#2237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2237
[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#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2436]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2436
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2655]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2655
[Intel XE#2687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2808]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2808
[Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839
[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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
[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#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948
[Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961
[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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3177
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#3187]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3187
[Intel XE#3189]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3189
[Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[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#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[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_8080 -> IGTPW_11947
* Linux: xe-2091-c1837d4e9af4e9df3109960341105c035b441667 -> xe-2106-aa0898115bcff3eda6d021cc66eb8a1c3b264c56
IGTPW_11947: 7d59263488cf3212d0c6595477698cc63e5b3696 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2091-c1837d4e9af4e9df3109960341105c035b441667: c1837d4e9af4e9df3109960341105c035b441667
xe-2106-aa0898115bcff3eda6d021cc66eb8a1c3b264c56: aa0898115bcff3eda6d021cc66eb8a1c3b264c56
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11947/index.html
[-- Attachment #2: Type: text/html, Size: 95095 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for lib/xe/oa: Don't skip if freq sysfs are not present (rev2)
2024-10-22 5:14 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-10-22 9:19 ` Kamil Konieczny
0 siblings, 0 replies; 9+ messages in thread
From: Kamil Konieczny @ 2024-10-22 9:19 UTC (permalink / raw)
To: igt-dev; +Cc: Dixit, Ashutosh, I915-ci-infra
Hi igt-dev,
On 2024-10-22 at 05:14:19 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: lib/xe/oa: Don't skip if freq sysfs are not present (rev2)
> URL : https://patchwork.freedesktop.org/series/140269/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_15574_full -> IGTPW_11947_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_11947_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_11947_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_11947/index.html
>
> Participating hosts (8 -> 7)
> ------------------------------
>
> Missing (1): shard-glk
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_11947_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@gem_lmem_swapping@parallel-random:
> - shard-dg2: [PASS][1] -> [SKIP][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-10/igt@gem_lmem_swapping@parallel-random.html
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/shard-dg2-2/igt@gem_lmem_swapping@parallel-random.html
>
This is unrelated to xe test.
Regards,
Kamil
>
> Known issues
> ------------
>
> Here are the changes found in IGTPW_11947_full that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@api_intel_bb@blit-reloc-purge-cache:
...cut...
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11947/index.html
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-10-22 9:19 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-21 21:42 [PATCH i-g-t] lib/xe/oa: Don't skip if freq sysfs are not present Ashutosh Dixit
2024-10-21 23:11 ` ✓ Fi.CI.BAT: success for lib/xe/oa: Don't skip if freq sysfs are not present (rev2) Patchwork
2024-10-21 23:22 ` ✓ CI.xeBAT: " Patchwork
2024-10-22 5:14 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-10-22 9:19 ` Kamil Konieczny
2024-10-22 6:28 ` ✓ CI.xeFULL: success " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2024-10-21 18:12 [PATCH i-g-t] lib/xe/oa: Don't skip if freq sysfs are not present Ashutosh Dixit
2024-10-21 20:55 ` Umesh Nerlige Ramappa
2024-10-21 21:03 ` Dixit, Ashutosh
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox