* [igt-dev] [PATCH i-g-t v2 1/2] tests/intel/xe_create: sanity check all MBZ fields
@ 2023-11-30 17:18 Matthew Auld
2023-11-30 17:18 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/intel-ci/xe-fast-feedback: add create-invalid-mbz Matthew Auld
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Matthew Auld @ 2023-11-30 17:18 UTC (permalink / raw)
To: igt-dev
Explicitly check that all MBZ (must-be-zero) fields are currently
rejected, including the currently unused extensions.
v2: (Kamil)
- Various improvements
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Pallavi Mishra <pallavi.mishra@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
---
tests/intel/xe_create.c | 59 +++++++++++++++++++++++++++++++++++++----
1 file changed, 54 insertions(+), 5 deletions(-)
diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c
index bb55a15e1..986b078dd 100644
--- a/tests/intel/xe_create.c
+++ b/tests/intel/xe_create.c
@@ -18,6 +18,18 @@
#define PAGE_SIZE 0x1000
+static int __ioctl_create(int fd, struct drm_xe_gem_create *create)
+{
+ int ret = 0;
+
+ if (igt_ioctl(fd, DRM_IOCTL_XE_GEM_CREATE, create)) {
+ ret = -errno;
+ errno = 0;
+ }
+
+ return ret;
+}
+
static int __create_bo(int fd, uint32_t vm, uint64_t size, uint32_t flags,
uint32_t *handlep)
{
@@ -27,14 +39,11 @@ static int __create_bo(int fd, uint32_t vm, uint64_t size, uint32_t flags,
.flags = flags,
.cpu_caching = __xe_default_cpu_caching_from_flags(fd, flags),
};
- int ret = 0;
+ int ret;
igt_assert(handlep);
- if (igt_ioctl(fd, DRM_IOCTL_XE_GEM_CREATE, &create)) {
- ret = -errno;
- errno = 0;
- }
+ ret = __ioctl_create(fd, &create);
*handlep = create.handle;
return ret;
@@ -88,6 +97,43 @@ static void create_invalid_size(int fd)
xe_vm_destroy(fd, vm);
}
+/**
+ * SUBTEST: create-invalid-mbz
+ * Functionality: ioctl
+ * Test category: negative test
+ * Description: Verifies xe bo create returns expected error code on all MBZ fields.
+ */
+static void create_invalid_mbz(int fd)
+{
+ struct drm_xe_gem_create create = {
+ .size = PAGE_SIZE,
+ .flags = system_memory(fd),
+ .cpu_caching = DRM_XE_GEM_CPU_CACHING_WB,
+ };
+ int i;
+
+ /* Make sure the baseline passes */
+ igt_assert_eq(__ioctl_create(fd, &create), 0);
+ gem_close(fd, create.handle);
+ create.handle = 0;
+
+ /* No supported extensions yet */
+ create.extensions = -1;
+ igt_assert_eq(__ioctl_create(fd, &create), -EINVAL);
+ create.extensions = 0;
+
+ /* Make sure KMD rejects non-zero padding/reserved fields */
+ create.pad = -1;
+ igt_assert_eq(__ioctl_create(fd, &create), -EINVAL);
+ create.pad = 0;
+
+ for (i = 0; i < ARRAY_SIZE(create.reserved); i++) {
+ create.reserved[i] = -1;
+ igt_assert_eq(__ioctl_create(fd, &create), -EINVAL);
+ create.reserved[i] = 0;
+ }
+}
+
enum exec_queue_destroy {
NOLEAK,
LEAK
@@ -222,6 +268,9 @@ igt_main
igt_fixture
xe = drm_open_driver(DRIVER_XE);
+ igt_subtest("create-invalid-mbz")
+ create_invalid_mbz(xe);
+
igt_subtest("create-invalid-size") {
create_invalid_size(xe);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t v2 2/2] tests/intel-ci/xe-fast-feedback: add create-invalid-mbz
2023-11-30 17:18 [igt-dev] [PATCH i-g-t v2 1/2] tests/intel/xe_create: sanity check all MBZ fields Matthew Auld
@ 2023-11-30 17:18 ` Matthew Auld
2023-11-30 18:15 ` Kamil Konieczny
2023-11-30 18:39 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/2] tests/intel/xe_create: sanity check all MBZ fields Patchwork
` (5 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Matthew Auld @ 2023-11-30 17:18 UTC (permalink / raw)
To: igt-dev
Ensure we have some coverage in BAT for gem_create MBZ fields.
v2: (Kamil)
- Keep it locally sorted
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Pallavi Mishra <pallavi.mishra@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
---
tests/intel-ci/xe-fast-feedback.testlist | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 5c53e249d..01ad9a9f3 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -4,6 +4,7 @@ igt@xe_module_load@load
igt@xe_compute@compute-square
igt@xe_create@create-execqueues-noleak
igt@xe_create@create-execqueues-leak
+igt@xe_create@create-invalid-mbz
igt@xe_create@create-massive-size
igt@xe_debugfs@base
igt@xe_debugfs@gt
--
2.43.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 2/2] tests/intel-ci/xe-fast-feedback: add create-invalid-mbz
2023-11-30 17:18 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/intel-ci/xe-fast-feedback: add create-invalid-mbz Matthew Auld
@ 2023-11-30 18:15 ` Kamil Konieczny
0 siblings, 0 replies; 11+ messages in thread
From: Kamil Konieczny @ 2023-11-30 18:15 UTC (permalink / raw)
To: igt-dev; +Cc: Matthew Auld
Hi Matthew,
On 2023-11-30 at 17:18:50 +0000, Matthew Auld wrote:
> Ensure we have some coverage in BAT for gem_create MBZ fields.
>
> v2: (Kamil)
> - Keep it locally sorted
>
> Signed-off-by: Matthew Auld <matthew.auld@intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Cc: Pallavi Mishra <pallavi.mishra@intel.com>
> Cc: Francois Dugast <francois.dugast@intel.com>
Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> tests/intel-ci/xe-fast-feedback.testlist | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
> index 5c53e249d..01ad9a9f3 100644
> --- a/tests/intel-ci/xe-fast-feedback.testlist
> +++ b/tests/intel-ci/xe-fast-feedback.testlist
> @@ -4,6 +4,7 @@ igt@xe_module_load@load
> igt@xe_compute@compute-square
> igt@xe_create@create-execqueues-noleak
> igt@xe_create@create-execqueues-leak
> +igt@xe_create@create-invalid-mbz
> igt@xe_create@create-massive-size
> igt@xe_debugfs@base
> igt@xe_debugfs@gt
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/2] tests/intel/xe_create: sanity check all MBZ fields
2023-11-30 17:18 [igt-dev] [PATCH i-g-t v2 1/2] tests/intel/xe_create: sanity check all MBZ fields Matthew Auld
2023-11-30 17:18 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/intel-ci/xe-fast-feedback: add create-invalid-mbz Matthew Auld
@ 2023-11-30 18:39 ` Patchwork
2023-11-30 21:55 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
` (4 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-11-30 18:39 UTC (permalink / raw)
To: Matthew Auld; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6673 bytes --]
== Series Details ==
Series: series starting with [i-g-t,v2,1/2] tests/intel/xe_create: sanity check all MBZ fields
URL : https://patchwork.freedesktop.org/series/127134/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13955 -> IGTPW_10309
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/index.html
Participating hosts (36 -> 34)
------------------------------
Additional (2): bat-rpls-1 fi-pnv-d510
Missing (4): bat-kbl-2 bat-dg2-9 fi-snb-2520m fi-bsw-n3050
Known issues
------------
Here are the changes found in IGTPW_10309 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-rpls-1: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/bat-rpls-1/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-rpls-1: NOTRUN -> [SKIP][2] ([i915#1849] / [i915#2582])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/bat-rpls-1/igt@fbdev@info.html
* igt@fbdev@write:
- bat-rpls-1: NOTRUN -> [SKIP][3] ([i915#2582]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/bat-rpls-1/igt@fbdev@write.html
* igt@gem_lmem_swapping@basic:
- fi-pnv-d510: NOTRUN -> [SKIP][4] ([fdo#109271]) +25 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/fi-pnv-d510/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@random-engines:
- bat-rpls-1: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/bat-rpls-1/igt@gem_lmem_swapping@random-engines.html
* igt@gem_tiled_pread_basic:
- bat-rpls-1: NOTRUN -> [SKIP][6] ([i915#3282])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/bat-rpls-1/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-rpls-1: NOTRUN -> [SKIP][7] ([i915#6621])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/bat-rpls-1/igt@i915_pm_rps@basic-api.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-rpls-1: NOTRUN -> [SKIP][8] ([i915#1845]) +17 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/bat-rpls-1/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-rpls-1: NOTRUN -> [SKIP][9] ([i915#3637]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/bat-rpls-1/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-rpls-1: NOTRUN -> [SKIP][10] ([fdo#109285])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/bat-rpls-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@basic:
- bat-rpls-1: NOTRUN -> [SKIP][11] ([i915#1849] / [i915#5354])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/bat-rpls-1/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rpls-1: NOTRUN -> [SKIP][12] ([i915#3555])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/bat-rpls-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-rpls-1: NOTRUN -> [SKIP][13] ([fdo#109295] / [i915#1845] / [i915#3708])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/bat-rpls-1/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-write:
- bat-rpls-1: NOTRUN -> [SKIP][14] ([fdo#109295] / [i915#3708]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/bat-rpls-1/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-modeset@b-dp6:
- bat-adlp-11: [FAIL][15] ([i915#6121]) -> [PASS][16] +3 other tests pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/bat-adlp-11/igt@kms_flip@basic-flip-vs-modeset@b-dp6.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/bat-adlp-11/igt@kms_flip@basic-flip-vs-modeset@b-dp6.html
* igt@kms_hdmi_inject@inject-audio:
- fi-kbl-guc: [FAIL][17] ([IGT#3]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9736]: https://gitlab.freedesktop.org/drm/intel/issues/9736
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7612 -> IGTPW_10309
CI-20190529: 20190529
CI_DRM_13955: d835c627d25ba8775624ff3e854d034708044ac3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10309: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/index.html
IGT_7612: b5c47966901ee1060bcb9d4bccdd3ccec9651ef4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@xe_create@create-invalid-mbz
-igt@i915_query@query-l3-bank-count
-igt@i915_query@query-l3-bank-count-invalid
-igt@i915_query@query-l3-bank-count-support
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/index.html
[-- Attachment #2: Type: text/html, Size: 7897 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for series starting with [i-g-t,v2,1/2] tests/intel/xe_create: sanity check all MBZ fields
2023-11-30 17:18 [igt-dev] [PATCH i-g-t v2 1/2] tests/intel/xe_create: sanity check all MBZ fields Matthew Auld
2023-11-30 17:18 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/intel-ci/xe-fast-feedback: add create-invalid-mbz Matthew Auld
2023-11-30 18:39 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/2] tests/intel/xe_create: sanity check all MBZ fields Patchwork
@ 2023-11-30 21:55 ` Patchwork
2023-12-01 14:58 ` [igt-dev] [PATCH i-g-t v2 1/2] " Kamil Konieczny
` (3 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-11-30 21:55 UTC (permalink / raw)
To: Matthew Auld; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3030 bytes --]
== Series Details ==
Series: series starting with [i-g-t,v2,1/2] tests/intel/xe_create: sanity check all MBZ fields
URL : https://patchwork.freedesktop.org/series/127134/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7612_BAT -> XEIGTPW_10309_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between XEIGT_7612_BAT and XEIGTPW_10309_BAT:
### New IGT tests (1) ###
* igt@xe_create@create-invalid-mbz:
- Statuses : 4 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_10309_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1:
- bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#480])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7612/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10309/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
#### Possible fixes ####
* igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
- bat-adlp-7: [FAIL][3] ([i915#2346]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7612/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10309/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [FAIL][5] ([Intel XE#480]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7612/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10309/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
Build changes
-------------
* IGT: IGT_7612 -> IGTPW_10309
* Linux: xe-538-afdc645350a4b30d1ba6c52deed4ecc11bf7c083 -> xe-541-68b673dd7ccbe64715e0a7492897e8d992040016
IGTPW_10309: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/index.html
IGT_7612: b5c47966901ee1060bcb9d4bccdd3ccec9651ef4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-538-afdc645350a4b30d1ba6c52deed4ecc11bf7c083: afdc645350a4b30d1ba6c52deed4ecc11bf7c083
xe-541-68b673dd7ccbe64715e0a7492897e8d992040016: 68b673dd7ccbe64715e0a7492897e8d992040016
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10309/index.html
[-- Attachment #2: Type: text/html, Size: 3708 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 1/2] tests/intel/xe_create: sanity check all MBZ fields
2023-11-30 17:18 [igt-dev] [PATCH i-g-t v2 1/2] tests/intel/xe_create: sanity check all MBZ fields Matthew Auld
` (2 preceding siblings ...)
2023-11-30 21:55 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
@ 2023-12-01 14:58 ` Kamil Konieczny
2023-12-08 13:33 ` Francois Dugast
2023-12-01 20:31 ` [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,v2,1/2] " Patchwork
` (2 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Kamil Konieczny @ 2023-12-01 14:58 UTC (permalink / raw)
To: igt-dev; +Cc: Matthew Auld
Hi Matthew,
On 2023-11-30 at 17:18:49 +0000, Matthew Auld wrote:
> Explicitly check that all MBZ (must-be-zero) fields are currently
> rejected, including the currently unused extensions.
>
> v2: (Kamil)
> - Various improvements
>
> Signed-off-by: Matthew Auld <matthew.auld@intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Cc: Pallavi Mishra <pallavi.mishra@intel.com>
> Cc: Francois Dugast <francois.dugast@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Please wait with merge or talk to Francios as he prepared xe-uapi change.
Regards,
Kamil
> ---
> tests/intel/xe_create.c | 59 +++++++++++++++++++++++++++++++++++++----
> 1 file changed, 54 insertions(+), 5 deletions(-)
>
> diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c
> index bb55a15e1..986b078dd 100644
> --- a/tests/intel/xe_create.c
> +++ b/tests/intel/xe_create.c
> @@ -18,6 +18,18 @@
>
> #define PAGE_SIZE 0x1000
>
> +static int __ioctl_create(int fd, struct drm_xe_gem_create *create)
> +{
> + int ret = 0;
> +
> + if (igt_ioctl(fd, DRM_IOCTL_XE_GEM_CREATE, create)) {
> + ret = -errno;
> + errno = 0;
> + }
> +
> + return ret;
> +}
> +
> static int __create_bo(int fd, uint32_t vm, uint64_t size, uint32_t flags,
> uint32_t *handlep)
> {
> @@ -27,14 +39,11 @@ static int __create_bo(int fd, uint32_t vm, uint64_t size, uint32_t flags,
> .flags = flags,
> .cpu_caching = __xe_default_cpu_caching_from_flags(fd, flags),
> };
> - int ret = 0;
> + int ret;
>
> igt_assert(handlep);
>
> - if (igt_ioctl(fd, DRM_IOCTL_XE_GEM_CREATE, &create)) {
> - ret = -errno;
> - errno = 0;
> - }
> + ret = __ioctl_create(fd, &create);
> *handlep = create.handle;
>
> return ret;
> @@ -88,6 +97,43 @@ static void create_invalid_size(int fd)
> xe_vm_destroy(fd, vm);
> }
>
> +/**
> + * SUBTEST: create-invalid-mbz
> + * Functionality: ioctl
> + * Test category: negative test
> + * Description: Verifies xe bo create returns expected error code on all MBZ fields.
> + */
> +static void create_invalid_mbz(int fd)
> +{
> + struct drm_xe_gem_create create = {
> + .size = PAGE_SIZE,
> + .flags = system_memory(fd),
> + .cpu_caching = DRM_XE_GEM_CPU_CACHING_WB,
> + };
> + int i;
> +
> + /* Make sure the baseline passes */
> + igt_assert_eq(__ioctl_create(fd, &create), 0);
> + gem_close(fd, create.handle);
> + create.handle = 0;
> +
> + /* No supported extensions yet */
> + create.extensions = -1;
> + igt_assert_eq(__ioctl_create(fd, &create), -EINVAL);
> + create.extensions = 0;
> +
> + /* Make sure KMD rejects non-zero padding/reserved fields */
> + create.pad = -1;
> + igt_assert_eq(__ioctl_create(fd, &create), -EINVAL);
> + create.pad = 0;
> +
> + for (i = 0; i < ARRAY_SIZE(create.reserved); i++) {
> + create.reserved[i] = -1;
> + igt_assert_eq(__ioctl_create(fd, &create), -EINVAL);
> + create.reserved[i] = 0;
> + }
> +}
> +
> enum exec_queue_destroy {
> NOLEAK,
> LEAK
> @@ -222,6 +268,9 @@ igt_main
> igt_fixture
> xe = drm_open_driver(DRIVER_XE);
>
> + igt_subtest("create-invalid-mbz")
> + create_invalid_mbz(xe);
> +
> igt_subtest("create-invalid-size") {
> create_invalid_size(xe);
> }
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,v2,1/2] tests/intel/xe_create: sanity check all MBZ fields
2023-11-30 17:18 [igt-dev] [PATCH i-g-t v2 1/2] tests/intel/xe_create: sanity check all MBZ fields Matthew Auld
` (3 preceding siblings ...)
2023-12-01 14:58 ` [igt-dev] [PATCH i-g-t v2 1/2] " Kamil Konieczny
@ 2023-12-01 20:31 ` Patchwork
2023-12-04 10:17 ` Kamil Konieczny
2023-12-05 12:55 ` Patchwork
2023-12-05 14:02 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
6 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2023-12-01 20:31 UTC (permalink / raw)
To: Matthew Auld; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100029 bytes --]
== Series Details ==
Series: series starting with [i-g-t,v2,1/2] tests/intel/xe_create: sanity check all MBZ fields
URL : https://patchwork.freedesktop.org/series/127134/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13955_full -> IGTPW_10309_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10309_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10309_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_10309/index.html
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10309_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-glk: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
Known issues
------------
Here are the changes found in IGTPW_10309_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8414]) +5 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@drm_fdinfo@busy@vcs0.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][4] ([i915#7742])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][5] -> [FAIL][6] ([i915#7742])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +21 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-15/igt@drm_fdinfo@virtual-busy-all.html
* igt@fbdev@pan:
- shard-rkl: [PASS][9] -> [SKIP][10] ([i915#2582])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@fbdev@pan.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@fbdev@pan.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#3281]) +4 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#3281]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-15/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-7/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][15] -> [INCOMPLETE][16] ([i915#7297])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#6335])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8562])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#8562])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_create@create-ext-set-pat.html
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8562])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-16/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: NOTRUN -> [FAIL][21] ([i915#6268])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-mtlp: NOTRUN -> [SKIP][22] ([fdo#109314])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#8555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@in-flight-immediate:
- shard-mtlp: [PASS][26] -> [ABORT][27] ([i915#9262])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-1/igt@gem_eio@in-flight-immediate.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@gem_eio@in-flight-immediate.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#4771])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#8555]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#6334])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-glk: NOTRUN -> [FAIL][33] ([i915#9606])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk8/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-deadline:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [PASS][35] -> [FAIL][36] ([i915#2842]) +1 other test fail
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-7/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-rkl: NOTRUN -> [FAIL][37] ([i915#2842])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@gem_exec_fair@basic-none-vip@rcs0.html
- shard-glk: NOTRUN -> [FAIL][38] ([i915#2842])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk3/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-rkl: [PASS][39] -> [FAIL][40] ([i915#2842]) +2 other tests fail
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@gem_exec_fair@basic-none@rcs0.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-pace-share:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4812])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_exec_fence@submit67.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][44] ([fdo#112283]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +8 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4812]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: [PASS][49] -> [ABORT][50] ([i915#7975] / [i915#8213])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4860])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-glk: NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#4613])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_lmem_swapping@verify.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#8289])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-5/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4077]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-3/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@basic-wc:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4077]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@gem_mmap_gtt@basic-wc.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +14 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4083])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +7 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@gem_mmap_wc@close.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@display:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_pread@display.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#4270]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4270])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#8411])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4079])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4079])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4079])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#4885])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][74] ([i915#5889])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@gem_spin_batch@spin-all-new.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#3323])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#3323])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#3297])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4880]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4958])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_userptr_blits@sd-probe.html
* igt@gen3_render_linear_blits:
- shard-rkl: NOTRUN -> [SKIP][81] ([fdo#109289]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gen3_render_linear_blits.html
* igt@gen7_exec_parse@basic-allocation:
- shard-mtlp: NOTRUN -> [SKIP][82] ([fdo#109289]) +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@gen7_exec_parse@basic-allocation.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][83] ([fdo#109289]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#2527])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#2527]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-out:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#2856]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [PASS][88] -> [ABORT][89] ([i915#9697])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#7091])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-rkl: NOTRUN -> [SKIP][91] ([fdo#109293] / [fdo#109506])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#6621])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#8925])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#8925])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#6188])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][96] ([fdo#109302])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-3/igt@i915_query@query-topology-unsupported.html
* igt@i915_selftest@live@gt_mocs:
- shard-mtlp: [PASS][97] -> [DMESG-WARN][98] ([i915#9715])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-3/igt@i915_selftest@live@gt_mocs.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][99] ([i915#9311])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4212])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
- shard-mtlp: [PASS][101] -> [DMESG-WARN][102] ([i915#2017] / [i915#9157])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-vga-1-linear:
- shard-snb: NOTRUN -> [SKIP][103] ([fdo#109271]) +6 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-snb7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-vga-1-linear.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][104] ([i915#8247]) +3 other tests fail
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6229])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][107] ([fdo#111614]) +5 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#4538] / [i915#5286]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][109] ([fdo#111614])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#5286])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][111] -> [FAIL][112] ([i915#5138]) +1 other test fail
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#3638]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][114] ([fdo#111614] / [i915#3638])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#5190]) +14 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-14/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5190]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][118] ([fdo#110723])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#6187]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][120] ([fdo#111615]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#2705])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4087]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@dp-audio:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#7828]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2: NOTRUN -> [SKIP][124] ([fdo#111827]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][125] ([fdo#111827])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#7828]) +7 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-glk: NOTRUN -> [SKIP][127] ([fdo#109271]) +43 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk5/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#7828])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#7828]) +6 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#7828]) +4 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-16/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_color@legacy-gamma-reset@pipe-b:
- shard-rkl: [PASS][131] -> [SKIP][132] ([i915#4098]) +5 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_color@legacy-gamma-reset@pipe-b.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_color@legacy-gamma-reset@pipe-b.html
* igt@kms_content_protection@atomic-dpms:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6944]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#3299])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#7118])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3555] / [i915#8814]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][137] ([fdo#109279] / [i915#3359])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#3359])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#3555])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#3555]) +5 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#3555]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-14/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#3359])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#3555]) +4 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][144] ([fdo#109274] / [i915#5354]) +7 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3546]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-rkl: [PASS][147] -> [SKIP][148] ([i915#1845] / [i915#4098]) +13 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#1845] / [i915#4098]) +21 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][150] ([fdo#111825]) +5 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][151] -> [FAIL][152] ([i915#2346])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][153] ([i915#2346])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#8588])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#8588])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#8588])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#3804])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#8812])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#3840] / [i915#4098]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#3840] / [i915#4098])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#3840])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: [PASS][162] -> [FAIL][163] ([i915#4767])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk3/igt@kms_fbcon_fbt@fbc-suspend.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk8/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3637])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-snb: NOTRUN -> [SKIP][165] ([fdo#109271] / [fdo#111767]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-snb4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-dg2: NOTRUN -> [SKIP][166] ([fdo#109274] / [fdo#111767])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2: NOTRUN -> [SKIP][167] ([fdo#109274]) +5 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#3637] / [i915#4098]) +5 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#8381])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_flip@flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#8381])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#2672]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#2672]) +4 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#2587] / [i915#2672]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#2672]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: [PASS][175] -> [SKIP][176] ([i915#1849] / [i915#4098] / [i915#5354]) +8 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#8708]) +22 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#1825]) +16 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][179] ([fdo#109280]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][180] ([fdo#111825] / [i915#1825]) +20 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#5460])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8708]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#3458]) +16 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#3458]) +3 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][185] ([fdo#111825]) +12 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3023]) +9 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#5354]) +30 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#1849] / [i915#4098] / [i915#5354]) +10 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#8708]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][190] ([fdo#110189])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8228])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_hdr@bpc-switch.html
* igt@kms_invalid_mode@int-max-clock:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#4098]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_invalid_mode@int-max-clock.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#4816])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#4816])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#6301])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@plane-position-covered:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#4098] / [i915#8825]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_plane@plane-position-covered.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][197] ([i915#4573]) +1 other test fail
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][198] ([i915#8292])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][199] ([i915#8292])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#5176] / [i915#9423]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#6953] / [i915#8152])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#5235]) +19 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#5235]) +7 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#4098] / [i915#6953] / [i915#8152]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#5235]) +6 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#5235])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#5235]) +5 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_prime@basic-crc-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#6524])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#9683])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#9683])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][211] ([fdo#111068] / [i915#9683])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][212] ([fdo#109642] / [fdo#111068] / [i915#9683])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#9683]) +4 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][214] ([fdo#111068] / [i915#9683]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr2_dpms:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#9673] / [i915#9732]) +5 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_psr@psr2_dpms.html
* igt@kms_psr@psr2_primary_mmap_cpu:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#9673])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-8/igt@kms_psr@psr2_primary_mmap_cpu.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#9685])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#4235])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#4098])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_setmode@basic-clone-single-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8809])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg1: NOTRUN -> [FAIL][221] ([IGT#2] / [i915#6493])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8623])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#8623])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1:
- shard-snb: [PASS][224] -> [FAIL][225] ([i915#9196])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [PASS][226] -> [FAIL][227] ([i915#9196])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_vblank@query-forked-busy:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#4098]) +6 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_vblank@query-forked-busy.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#2437])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#2437])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#2436])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#7387])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: [PASS][233] -> [FAIL][234] ([i915#4349])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#8516])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][236] ([i915#9351])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_udl:
- shard-mtlp: NOTRUN -> [SKIP][237] ([fdo#109291])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@prime_udl.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#3708] / [i915#4077]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][239] ([fdo#109295] / [i915#3708])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@prime_vgem@fence-read-hang.html
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#3708])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@prime_vgem@fence-read-hang.html
* igt@v3d/v3d_perfmon@create-perfmon-0:
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#2575]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@v3d/v3d_perfmon@create-perfmon-0.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-rkl: NOTRUN -> [SKIP][242] ([fdo#109315]) +8 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#2575]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#2575]) +12 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#7711]) +11 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#7711]) +2 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
* igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#2575])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-4/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#7711]) +4 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#7711]) +2 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-14/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@fbdev@nullptr:
- shard-rkl: [SKIP][250] ([i915#2582]) -> [PASS][251] +1 other test pass
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@fbdev@nullptr.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@fbdev@nullptr.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][252] ([i915#5784]) -> [PASS][253] +1 other test pass
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-15/igt@gem_eio@unwedge-stress.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][254] ([i915#2842]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-rkl: [FAIL][256] ([i915#2842]) -> [PASS][257] +1 other test pass
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][258] ([i915#2842]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-9/igt@gem_exec_fair@basic-pace@rcs0.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][260] ([i915#5493]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_wc@set-cache-level:
- shard-rkl: [SKIP][262] ([i915#1850]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@gem_mmap_wc@set-cache-level.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@gem_mmap_wc@set-cache-level.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [WARN][264] ([i915#7356]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0}:
- shard-dg1: [FAIL][266] ([i915#3591]) -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_selftest@live@gem_contexts:
- shard-mtlp: [DMESG-FAIL][268] -> [PASS][269]
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-3/igt@i915_selftest@live@gem_contexts.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@i915_selftest@live@gem_contexts.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][270] ([i915#5138]) -> [PASS][271]
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [FAIL][272] ([i915#3743]) -> [PASS][273] +1 other test pass
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_color@ctm-green-to-red@pipe-b:
- shard-rkl: [SKIP][274] ([i915#4098]) -> [PASS][275] +12 other tests pass
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_color@ctm-green-to-red@pipe-b.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_color@ctm-green-to-red@pipe-b.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
- shard-rkl: [SKIP][276] ([i915#1845] / [i915#4098]) -> [PASS][277] +18 other tests pass
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
* igt@kms_cursor_legacy@single-move@all-pipes:
- shard-mtlp: [DMESG-WARN][278] ([i915#2017]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@kms_cursor_legacy@single-move@all-pipes.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [FAIL][280] ([i915#6880]) -> [PASS][281] +1 other test pass
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][282] ([i915#1849] / [i915#4098] / [i915#5354]) -> [PASS][283] +14 other tests pass
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* {igt@kms_plane@planar-pixel-format-settings}:
- shard-rkl: [SKIP][284] ([i915#9581]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_plane@planar-pixel-format-settings.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_plane@planar-pixel-format-settings.html
* {igt@kms_pm_rpm@modeset-lpsp}:
- shard-dg2: [SKIP][286] ([i915#9519]) -> [PASS][287]
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
* {igt@kms_pm_rpm@modeset-lpsp-stress-no-wait}:
- shard-rkl: [SKIP][288] ([i915#9519]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_properties@plane-properties-atomic:
- shard-rkl: [SKIP][290] ([i915#1849] / [i915#4098]) -> [PASS][291] +2 other tests pass
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_properties@plane-properties-atomic.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_properties@plane-properties-atomic.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1:
- shard-snb: [FAIL][292] ([i915#9196]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html
* igt@perf_pmu@multi-client@vcs0:
- shard-mtlp: [FAIL][294] ([i915#4349]) -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-5/igt@perf_pmu@multi-client@vcs0.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-3/igt@perf_pmu@multi-client@vcs0.html
* igt@perf_pmu@render-node-busy-idle@vcs1:
- shard-dg1: [FAIL][296] ([i915#4349]) -> [PASS][297] +2 other tests pass
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-19/igt@perf_pmu@render-node-busy-idle@vcs1.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@perf_pmu@render-node-busy-idle@vcs1.html
* igt@prime_vgem@fence-wait@vcs1:
- shard-mtlp: [ABORT][298] -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@prime_vgem@fence-wait@vcs1.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@prime_vgem@fence-wait@vcs1.html
* igt@prime_vgem@fence-wait@vecs0:
- shard-mtlp: [DMESG-WARN][300] ([i915#8875]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@prime_vgem@fence-wait@vecs0.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@prime_vgem@fence-wait@vecs0.html
#### Warnings ####
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: [FAIL][302] ([i915#8247]) -> [DMESG-FAIL][303] ([i915#8561]) +3 other tests dmesg-fail
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@kms_async_flips@crc@pipe-d-edp-1.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][304] ([i915#1845] / [i915#4098]) -> [SKIP][305] ([i915#5286]) +7 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][306] ([i915#5286]) -> [SKIP][307] ([i915#1845] / [i915#4098]) +4 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][308] ([fdo#111614] / [i915#3638]) -> [SKIP][309] ([i915#1845] / [i915#4098]) +7 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: [SKIP][310] ([i915#1845] / [i915#4098]) -> [SKIP][311] ([fdo#111614] / [i915#3638]) +1 other test skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-rkl: [SKIP][312] ([fdo#110723]) -> [SKIP][313] ([i915#1845] / [i915#4098]) +4 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][314] ([i915#1845] / [i915#4098]) -> [SKIP][315] ([fdo#110723]) +7 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-rkl: [SKIP][316] ([i915#1845] / [i915#4098]) -> [SKIP][317] ([fdo#111615])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@yf-tiled-addfb.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: [SKIP][318] ([i915#7118]) -> [SKIP][319] ([i915#1845] / [i915#4098])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: [SKIP][320] ([i915#3116]) -> [SKIP][321] ([i915#1845] / [i915#4098])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][322] ([i915#1845] / [i915#4098]) -> [SKIP][323] ([i915#3116])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_content_protection@dp-mst-type-1.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][324] ([i915#1845] / [i915#4098]) -> [SKIP][325] ([i915#7118]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_content_protection@srm.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][326] ([i915#7118] / [i915#7162]) -> [SKIP][327] ([i915#7118])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-11/igt@kms_content_protection@type1.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: [SKIP][328] ([i915#1845] / [i915#4098]) -> [SKIP][329] ([fdo#109279] / [i915#3359])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: [SKIP][330] ([i915#3359]) -> [SKIP][331] ([i915#1845] / [i915#4098])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][332] ([i915#1845] / [i915#4098]) -> [SKIP][333] ([i915#3359])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x170.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: [SKIP][334] ([i915#3555]) -> [SKIP][335] ([i915#1845] / [i915#4098]) +2 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-rkl: [SKIP][336] ([fdo#111767] / [fdo#111825]) -> [SKIP][337] ([i915#1845] / [i915#4098]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-rkl: [SKIP][338] ([i915#1845] / [i915#4098]) -> [SKIP][339] ([fdo#111825]) +5 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-rkl: [SKIP][340] ([fdo#111825]) -> [SKIP][341] ([i915#1845] / [i915#4098]) +3 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: [SKIP][342] ([i915#1845] / [i915#4098]) -> [SKIP][343] ([i915#4103])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: [SKIP][344] ([i915#4098]) -> [SKIP][345] ([i915#3840])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: [SKIP][346] ([i915#3555] / [i915#3840]) -> [SKIP][347] ([i915#1845] / [i915#4098])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_dsc@dsc-with-bpc-formats.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][348] ([fdo#110189] / [i915#3955]) -> [SKIP][349] ([i915#3955])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][350] ([fdo#109285] / [i915#4098]) -> [SKIP][351] ([fdo#109285])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: [SKIP][352] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][353] ([i915#3023]) +17 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][354] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][355] ([fdo#111825]) +2 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][356] ([fdo#111825] / [i915#1825]) -> [SKIP][357] ([i915#1849] / [i915#4098] / [i915#5354]) +29 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][358] ([fdo#111825]) -> [SKIP][359] ([i915#1849] / [i915#4098] / [i915#5354])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: [SKIP][360] ([i915#5439]) -> [SKIP][361] ([i915#1849] / [i915#4098] / [i915#5354])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: [SKIP][362] ([i915#3023]) -> [SKIP][363] ([i915#1849] / [i915#4098] / [i915#5354]) +14 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: [SKIP][364] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][365] ([fdo#111825] / [i915#1825]) +30 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: [SKIP][366] ([i915#4098]) -> [SKIP][367] ([i915#3555] / [i915#8228])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_hdr@invalid-hdr.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-swap:
- shard-rkl: [SKIP][368] ([i915#3555] / [i915#8228]) -> [SKIP][369] ([i915#1845] / [i915#4098]) +2 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_hdr@static-swap.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_hdr@static-swap.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][370] ([i915#4816]) -> [SKIP][371] ([i915#4070] / [i915#4816])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: [SKIP][372] ([i915#1845] / [i915#4098]) -> [SKIP][373] ([i915#6301])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_panel_fitting@legacy.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_panel_fitting@legacy.html
* igt@kms_psr@psr2_cursor_mmap_cpu:
- shard-dg2: [SKIP][374] ([i915#9673] / [i915#9732]) -> [SKIP][375] ([i915#9673])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-2/igt@kms_psr@psr2_cursor_mmap_cpu.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_psr@psr2_cursor_mmap_cpu.html
* igt@kms_psr@psr2_cursor_mmap_gtt:
- shard-dg2: [SKIP][376] ([i915#9673] / [i915#9736]) -> [SKIP][377] ([i915#9673] / [i915#9732]) +1 other test skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-11/igt@kms_psr@psr2_cursor_mmap_gtt.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_psr@psr2_cursor_mmap_gtt.html
- shard-rkl: [SKIP][378] ([i915#9673]) -> [SKIP][379] ([i915#9673] / [i915#9732]) +2 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_psr@psr2_cursor_mmap_gtt.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_psr@psr2_cursor_mmap_gtt.html
* igt@kms_psr@psr2_cursor_render:
- shard-rkl: [SKIP][380] ([i915#9673] / [i915#9732]) -> [SKIP][381] ([i915#9673])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_psr@psr2_cursor_render.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_psr@psr2_cursor_render.html
* igt@kms_psr@psr2_sprite_render:
- shard-dg2: [SKIP][382] ([i915#9673] / [i915#9732]) -> [SKIP][383] ([i915#9673] / [i915#9736]) +1 other test skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-5/igt@kms_psr@psr2_sprite_render.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_psr@psr2_sprite_render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][384] ([i915#1845] / [i915#4098]) -> [SKIP][385] ([fdo#111615] / [i915#5289]) +1 other test skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: [SKIP][386] ([fdo#111615] / [i915#5289]) -> [SKIP][387] ([i915#1845] / [i915#4098])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: [SKIP][388] ([i915#1845] / [i915#4098]) -> [SKIP][389] ([i915#3555]) +1 other test skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_scaling_modes@scaling-mode-none.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
[i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
[i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
[i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8825]: https://gitlab.freedesktop.org/drm/intel/issues/8825
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9157]: https://gitlab.freedesktop.org/drm/intel/issues/9157
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9581]: https://gitlab.freedesktop.org/drm/intel/issues/9581
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9653]: https://gitlab.freedesktop.org/drm/intel/issues/9653
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697
[i915#9715]: https://gitlab.freedesktop.org/drm/intel/issues/9715
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9736]: https://gitlab.freedesktop.org/drm/intel/issues/9736
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7612 -> IGTPW_10309
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13955: d835c627d25ba8775624ff3e854d034708044ac3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10309: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/index.html
IGT_7612: b5c47966901ee1060bcb9d4bccdd3ccec9651ef4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/index.html
[-- Attachment #2: Type: text/html, Size: 126174 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,v2,1/2] tests/intel/xe_create: sanity check all MBZ fields
2023-12-01 20:31 ` [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,v2,1/2] " Patchwork
@ 2023-12-04 10:17 ` Kamil Konieczny
0 siblings, 0 replies; 11+ messages in thread
From: Kamil Konieczny @ 2023-12-04 10:17 UTC (permalink / raw)
To: igt-dev; +Cc: lgci.bug.filing, I915-ci-infra, Matthew Auld
Hi,
below regression is unrelated to xe test:
> * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
Regards,
Kamil
On 2023-12-01 at 20:31:22 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: series starting with [i-g-t,v2,1/2] tests/intel/xe_create: sanity check all MBZ fields
> URL : https://patchwork.freedesktop.org/series/127134/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_13955_full -> IGTPW_10309_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_10309_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_10309_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_10309/index.html
>
> Participating hosts (11 -> 11)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_10309_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
> - shard-glk: [PASS][1] -> [INCOMPLETE][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
>
>
> Known issues
> ------------
>
> Here are the changes found in IGTPW_10309_full that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@drm_fdinfo@busy@vcs0:
> - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8414]) +5 other tests skip
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@drm_fdinfo@busy@vcs0.html
>
> * igt@drm_fdinfo@most-busy-check-all@rcs0:
> - shard-rkl: NOTRUN -> [FAIL][4] ([i915#7742])
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html
>
> * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
> - shard-rkl: [PASS][5] -> [FAIL][6] ([i915#7742])
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
>
> * igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
> - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +21 other tests skip
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
>
> * igt@drm_fdinfo@virtual-busy-all:
> - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414])
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-15/igt@drm_fdinfo@virtual-busy-all.html
>
> * igt@fbdev@pan:
> - shard-rkl: [PASS][9] -> [SKIP][10] ([i915#2582])
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@fbdev@pan.html
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@fbdev@pan.html
>
> * igt@gem_bad_reloc@negative-reloc-lut:
> - shard-rkl: NOTRUN -> [SKIP][11] ([i915#3281]) +4 other tests skip
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html
> - shard-dg1: NOTRUN -> [SKIP][12] ([i915#3281]) +2 other tests skip
> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-15/igt@gem_bad_reloc@negative-reloc-lut.html
>
> * igt@gem_basic@multigpu-create-close:
> - shard-tglu: NOTRUN -> [SKIP][13] ([i915#7697])
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-7/igt@gem_basic@multigpu-create-close.html
>
> * igt@gem_ccs@block-multicopy-compressed:
> - shard-rkl: NOTRUN -> [SKIP][14] ([i915#9323])
> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html
>
> * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
> - shard-dg2: [PASS][15] -> [INCOMPLETE][16] ([i915#7297])
> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
> [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
>
> * igt@gem_create@create-ext-cpu-access-sanity-check:
> - shard-rkl: NOTRUN -> [SKIP][17] ([i915#6335])
> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
>
> * igt@gem_create@create-ext-set-pat:
> - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8562])
> [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_create@create-ext-set-pat.html
> - shard-rkl: NOTRUN -> [SKIP][19] ([i915#8562])
> [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_create@create-ext-set-pat.html
> - shard-dg1: NOTRUN -> [SKIP][20] ([i915#8562])
> [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-16/igt@gem_create@create-ext-set-pat.html
>
> * igt@gem_ctx_exec@basic-nohangcheck:
> - shard-rkl: NOTRUN -> [FAIL][21] ([i915#6268])
> [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html
>
> * igt@gem_ctx_param@set-priority-not-supported:
> - shard-mtlp: NOTRUN -> [SKIP][22] ([fdo#109314])
> [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@gem_ctx_param@set-priority-not-supported.html
>
> * igt@gem_ctx_persistence@heartbeat-close:
> - shard-dg1: NOTRUN -> [SKIP][23] ([i915#8555])
> [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-close.html
>
> * igt@gem_ctx_persistence@heartbeat-hostile:
> - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +3 other tests skip
> [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html
>
> * igt@gem_ctx_sseu@engines:
> - shard-rkl: NOTRUN -> [SKIP][25] ([i915#280])
> [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_ctx_sseu@engines.html
>
> * igt@gem_eio@in-flight-immediate:
> - shard-mtlp: [PASS][26] -> [ABORT][27] ([i915#9262])
> [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-1/igt@gem_eio@in-flight-immediate.html
> [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@gem_eio@in-flight-immediate.html
>
> * igt@gem_exec_balancer@bonded-dual:
> - shard-dg1: NOTRUN -> [SKIP][28] ([i915#4771])
> [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_exec_balancer@bonded-dual.html
>
> * igt@gem_exec_balancer@bonded-pair:
> - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771])
> [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html
>
> * igt@gem_exec_balancer@noheartbeat:
> - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#8555]) +1 other test skip
> [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@gem_exec_balancer@noheartbeat.html
>
> * igt@gem_exec_balancer@parallel-bb-first:
> - shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525])
> [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_exec_balancer@parallel-bb-first.html
>
> * igt@gem_exec_capture@capture-invisible@smem0:
> - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#6334])
> [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@gem_exec_capture@capture-invisible@smem0.html
>
> * igt@gem_exec_capture@many-4k-incremental:
> - shard-glk: NOTRUN -> [FAIL][33] ([i915#9606])
> [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk8/igt@gem_exec_capture@many-4k-incremental.html
>
> * igt@gem_exec_fair@basic-deadline:
> - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +1 other test skip
> [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@gem_exec_fair@basic-deadline.html
>
> * igt@gem_exec_fair@basic-none-share@rcs0:
> - shard-tglu: [PASS][35] -> [FAIL][36] ([i915#2842]) +1 other test fail
> [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html
> [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-7/igt@gem_exec_fair@basic-none-share@rcs0.html
>
> * igt@gem_exec_fair@basic-none-vip@rcs0:
> - shard-rkl: NOTRUN -> [FAIL][37] ([i915#2842])
> [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@gem_exec_fair@basic-none-vip@rcs0.html
> - shard-glk: NOTRUN -> [FAIL][38] ([i915#2842])
> [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk3/igt@gem_exec_fair@basic-none-vip@rcs0.html
>
> * igt@gem_exec_fair@basic-none@rcs0:
> - shard-rkl: [PASS][39] -> [FAIL][40] ([i915#2842]) +2 other tests fail
> [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@gem_exec_fair@basic-none@rcs0.html
> [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@gem_exec_fair@basic-none@rcs0.html
>
> * igt@gem_exec_fair@basic-pace-share:
> - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +2 other tests skip
> [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_exec_fair@basic-pace-share.html
>
> * igt@gem_exec_fair@basic-pace-solo:
> - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539])
> [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@gem_exec_fair@basic-pace-solo.html
>
> * igt@gem_exec_fence@submit67:
> - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4812])
> [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_exec_fence@submit67.html
>
> * igt@gem_exec_params@secure-non-master:
> - shard-dg2: NOTRUN -> [SKIP][44] ([fdo#112283]) +1 other test skip
> [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@gem_exec_params@secure-non-master.html
>
> * igt@gem_exec_reloc@basic-cpu-noreloc:
> - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +8 other tests skip
> [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-noreloc.html
>
> * igt@gem_exec_reloc@basic-wc:
> - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) +2 other tests skip
> [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@gem_exec_reloc@basic-wc.html
>
> * igt@gem_exec_schedule@preempt-queue:
> - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812])
> [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_exec_schedule@preempt-queue.html
>
> * igt@gem_exec_schedule@preempt-queue-contexts:
> - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4812]) +1 other test skip
> [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_exec_schedule@preempt-queue-contexts.html
>
> * igt@gem_exec_suspend@basic-s4-devices@lmem0:
> - shard-dg2: [PASS][49] -> [ABORT][50] ([i915#7975] / [i915#8213])
> [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
> [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
>
> * igt@gem_fenced_exec_thrash@no-spare-fences-busy:
> - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4860])
> [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
>
> * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
> - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860])
> [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
>
> * igt@gem_lmem_swapping@parallel-random-verify-ccs:
> - shard-glk: NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#4613])
> [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
>
> * igt@gem_lmem_swapping@verify:
> - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) +2 other tests skip
> [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_lmem_swapping@verify.html
>
> * igt@gem_media_fill@media-fill:
> - shard-dg2: NOTRUN -> [SKIP][55] ([i915#8289])
> [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-5/igt@gem_media_fill@media-fill.html
>
> * igt@gem_mmap_gtt@bad-object:
> - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4077]) +4 other tests skip
> [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-3/igt@gem_mmap_gtt@bad-object.html
>
> * igt@gem_mmap_gtt@basic-wc:
> - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4077]) +2 other tests skip
> [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@gem_mmap_gtt@basic-wc.html
>
> * igt@gem_mmap_gtt@medium-copy-xy:
> - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +14 other tests skip
> [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@gem_mmap_gtt@medium-copy-xy.html
>
> * igt@gem_mmap_wc@bad-object:
> - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4083])
> [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@gem_mmap_wc@bad-object.html
>
> * igt@gem_mmap_wc@close:
> - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +7 other tests skip
> [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@gem_mmap_wc@close.html
>
> * igt@gem_partial_pwrite_pread@write-display:
> - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +3 other tests skip
> [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@gem_partial_pwrite_pread@write-display.html
>
> * igt@gem_partial_pwrite_pread@writes-after-reads:
> - shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +3 other tests skip
> [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads.html
>
> * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
> - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +3 other tests skip
> [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
>
> * igt@gem_pread@display:
> - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) +3 other tests skip
> [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_pread@display.html
>
> * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
> - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4270]) +2 other tests skip
> [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
>
> * igt@gem_pxp@protected-encrypted-src-copy-not-readible:
> - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4270])
> [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
>
> * igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
> - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270])
> [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
>
> * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
> - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) +3 other tests skip
> [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html
>
> * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
> - shard-rkl: NOTRUN -> [SKIP][69] ([i915#8411])
> [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
> - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4079])
> [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
>
> * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
> - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4079])
> [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
>
> * igt@gem_set_tiling_vs_gtt:
> - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4079])
> [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@gem_set_tiling_vs_gtt.html
>
> * igt@gem_softpin@evict-snoop-interruptible:
> - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4885])
> [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@gem_softpin@evict-snoop-interruptible.html
>
> * igt@gem_spin_batch@spin-all-new:
> - shard-dg2: NOTRUN -> [FAIL][74] ([i915#5889])
> [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@gem_spin_batch@spin-all-new.html
>
> * igt@gem_userptr_blits@dmabuf-sync:
> - shard-glk: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#3323])
> [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html
> - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3323])
> [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html
>
> * igt@gem_userptr_blits@dmabuf-unsync:
> - shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297]) +1 other test skip
> [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html
> - shard-dg1: NOTRUN -> [SKIP][78] ([i915#3297])
> [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@gem_userptr_blits@dmabuf-unsync.html
>
> * igt@gem_userptr_blits@map-fixed-invalidate-busy:
> - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4880]) +1 other test skip
> [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
>
> * igt@gem_userptr_blits@sd-probe:
> - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4958])
> [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_userptr_blits@sd-probe.html
>
> * igt@gen3_render_linear_blits:
> - shard-rkl: NOTRUN -> [SKIP][81] ([fdo#109289]) +1 other test skip
> [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gen3_render_linear_blits.html
>
> * igt@gen7_exec_parse@basic-allocation:
> - shard-mtlp: NOTRUN -> [SKIP][82] ([fdo#109289]) +4 other tests skip
> [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@gen7_exec_parse@basic-allocation.html
>
> * igt@gen7_exec_parse@basic-rejected:
> - shard-dg2: NOTRUN -> [SKIP][83] ([fdo#109289]) +4 other tests skip
> [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@gen7_exec_parse@basic-rejected.html
>
> * igt@gen9_exec_parse@batch-without-end:
> - shard-dg1: NOTRUN -> [SKIP][84] ([i915#2527])
> [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@gen9_exec_parse@batch-without-end.html
>
> * igt@gen9_exec_parse@bb-oversize:
> - shard-rkl: NOTRUN -> [SKIP][85] ([i915#2527]) +3 other tests skip
> [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
>
> * igt@gen9_exec_parse@bb-start-out:
> - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#2856]) +1 other test skip
> [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@gen9_exec_parse@bb-start-out.html
>
> * igt@gen9_exec_parse@bb-start-param:
> - shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +2 other tests skip
> [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html
>
> * igt@i915_module_load@reload-with-fault-injection:
> - shard-mtlp: [PASS][88] -> [ABORT][89] ([i915#9697])
> [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
> [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
>
> * igt@i915_pipe_stress@stress-xrgb8888-ytiled:
> - shard-dg2: NOTRUN -> [SKIP][90] ([i915#7091])
> [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
>
> * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
> - shard-rkl: NOTRUN -> [SKIP][91] ([fdo#109293] / [fdo#109506])
> [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
>
> * igt@i915_pm_rps@min-max-config-loaded:
> - shard-dg2: NOTRUN -> [SKIP][92] ([i915#6621])
> [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html
>
> * igt@i915_pm_rps@thresholds-idle@gt0:
> - shard-dg1: NOTRUN -> [SKIP][93] ([i915#8925])
> [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@i915_pm_rps@thresholds-idle@gt0.html
>
> * igt@i915_pm_rps@thresholds-park@gt0:
> - shard-dg2: NOTRUN -> [SKIP][94] ([i915#8925])
> [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@i915_pm_rps@thresholds-park@gt0.html
>
> * igt@i915_query@query-topology-coherent-slice-mask:
> - shard-dg2: NOTRUN -> [SKIP][95] ([i915#6188])
> [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html
>
> * igt@i915_query@query-topology-unsupported:
> - shard-dg2: NOTRUN -> [SKIP][96] ([fdo#109302])
> [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-3/igt@i915_query@query-topology-unsupported.html
>
> * igt@i915_selftest@live@gt_mocs:
> - shard-mtlp: [PASS][97] -> [DMESG-WARN][98] ([i915#9715])
> [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-3/igt@i915_selftest@live@gt_mocs.html
> [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@i915_selftest@live@gt_mocs.html
>
> * igt@i915_selftest@mock@memory_region:
> - shard-dg2: NOTRUN -> [DMESG-WARN][99] ([i915#9311])
> [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@i915_selftest@mock@memory_region.html
>
> * igt@kms_addfb_basic@clobberred-modifier:
> - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4212])
> [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html
>
> * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
> - shard-mtlp: [PASS][101] -> [DMESG-WARN][102] ([i915#2017] / [i915#9157])
> [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
> [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
>
> * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-vga-1-linear:
> - shard-snb: NOTRUN -> [SKIP][103] ([fdo#109271]) +6 other tests skip
> [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-snb7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-vga-1-linear.html
>
> * igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
> - shard-dg2: NOTRUN -> [FAIL][104] ([i915#8247]) +3 other tests fail
> [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
>
> * igt@kms_async_flips@test-cursor:
> - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6229])
> [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@kms_async_flips@test-cursor.html
>
> * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
> - shard-dg2: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555])
> [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
>
> * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
> - shard-dg2: NOTRUN -> [SKIP][107] ([fdo#111614]) +5 other tests skip
> [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
>
> * igt@kms_big_fb@4-tiled-32bpp-rotate-0:
> - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4538] / [i915#5286]) +2 other tests skip
> [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
>
> * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
> - shard-mtlp: NOTRUN -> [SKIP][109] ([fdo#111614])
> [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
>
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
> - shard-rkl: NOTRUN -> [SKIP][110] ([i915#5286])
> [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
>
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> - shard-mtlp: [PASS][111] -> [FAIL][112] ([i915#5138]) +1 other test fail
> [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>
> * igt@kms_big_fb@linear-64bpp-rotate-270:
> - shard-dg1: NOTRUN -> [SKIP][113] ([i915#3638]) +1 other test skip
> [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@kms_big_fb@linear-64bpp-rotate-270.html
>
> * igt@kms_big_fb@linear-8bpp-rotate-90:
> - shard-rkl: NOTRUN -> [SKIP][114] ([fdo#111614] / [i915#3638])
> [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-90.html
>
> * igt@kms_big_fb@y-tiled-64bpp-rotate-0:
> - shard-dg2: NOTRUN -> [SKIP][115] ([i915#5190]) +14 other tests skip
> [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
>
> * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
> - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538])
> [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-14/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
>
> * igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
> - shard-dg2: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5190]) +4 other tests skip
> [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
>
> * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
> - shard-rkl: NOTRUN -> [SKIP][118] ([fdo#110723])
> [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
>
> * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
> - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#6187]) +1 other test skip
> [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
>
> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
> - shard-mtlp: NOTRUN -> [SKIP][120] ([fdo#111615]) +3 other tests skip
> [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
>
> * igt@kms_big_joiner@invalid-modeset:
> - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#2705])
> [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_big_joiner@invalid-modeset.html
>
> * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
> - shard-dg2: NOTRUN -> [SKIP][122] ([i915#4087]) +3 other tests skip
> [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
>
> * igt@kms_chamelium_audio@dp-audio:
> - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#7828]) +2 other tests skip
> [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_chamelium_audio@dp-audio.html
>
> * igt@kms_chamelium_color@ctm-0-25:
> - shard-dg2: NOTRUN -> [SKIP][124] ([fdo#111827]) +1 other test skip
> [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_chamelium_color@ctm-0-25.html
>
> * igt@kms_chamelium_color@ctm-blue-to-red:
> - shard-mtlp: NOTRUN -> [SKIP][125] ([fdo#111827])
> [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@kms_chamelium_color@ctm-blue-to-red.html
>
> * igt@kms_chamelium_frames@hdmi-crc-multiple:
> - shard-dg2: NOTRUN -> [SKIP][126] ([i915#7828]) +7 other tests skip
> [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html
>
> * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
> - shard-glk: NOTRUN -> [SKIP][127] ([fdo#109271]) +43 other tests skip
> [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk5/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
>
> * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
> - shard-tglu: NOTRUN -> [SKIP][128] ([i915#7828])
> [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
>
> * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
> - shard-rkl: NOTRUN -> [SKIP][129] ([i915#7828]) +6 other tests skip
> [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
> - shard-dg1: NOTRUN -> [SKIP][130] ([i915#7828]) +4 other tests skip
> [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-16/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
>
> * igt@kms_color@legacy-gamma-reset@pipe-b:
> - shard-rkl: [PASS][131] -> [SKIP][132] ([i915#4098]) +5 other tests skip
> [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_color@legacy-gamma-reset@pipe-b.html
> [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_color@legacy-gamma-reset@pipe-b.html
>
> * igt@kms_content_protection@atomic-dpms:
> - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6944]) +1 other test skip
> [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_content_protection@atomic-dpms.html
>
> * igt@kms_content_protection@dp-mst-lic-type-0:
> - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3299])
> [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html
>
> * igt@kms_content_protection@uevent:
> - shard-dg2: NOTRUN -> [SKIP][135] ([i915#7118])
> [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_content_protection@uevent.html
>
> * igt@kms_cursor_crc@cursor-onscreen-32x32:
> - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3555] / [i915#8814]) +1 other test skip
> [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html
>
> * igt@kms_cursor_crc@cursor-onscreen-512x170:
> - shard-rkl: NOTRUN -> [SKIP][137] ([fdo#109279] / [i915#3359])
> [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
>
> * igt@kms_cursor_crc@cursor-onscreen-512x512:
> - shard-dg1: NOTRUN -> [SKIP][138] ([i915#3359])
> [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-512x512.html
>
> * igt@kms_cursor_crc@cursor-onscreen-max-size:
> - shard-tglu: NOTRUN -> [SKIP][139] ([i915#3555])
> [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
>
> * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
> - shard-rkl: NOTRUN -> [SKIP][140] ([i915#3555]) +5 other tests skip
> [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
> - shard-dg1: NOTRUN -> [SKIP][141] ([i915#3555]) +1 other test skip
> [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-14/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
>
> * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
> - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#3359])
> [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
>
> * igt@kms_cursor_crc@cursor-sliding-32x10:
> - shard-dg2: NOTRUN -> [SKIP][143] ([i915#3555]) +4 other tests skip
> [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
>
> * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
> - shard-dg2: NOTRUN -> [SKIP][144] ([fdo#109274] / [i915#5354]) +7 other tests skip
> [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
> - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3546]) +1 other test skip
> [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
>
> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
> - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
> [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
>
> * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
> - shard-rkl: [PASS][147] -> [SKIP][148] ([i915#1845] / [i915#4098]) +13 other tests skip
> [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
> [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
>
> * igt@kms_cursor_legacy@cursor-vs-flip-toggle:
> - shard-rkl: NOTRUN -> [SKIP][149] ([i915#1845] / [i915#4098]) +21 other tests skip
> [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
> - shard-rkl: NOTRUN -> [SKIP][150] ([fdo#111825]) +5 other tests skip
> [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
> - shard-glk: [PASS][151] -> [FAIL][152] ([i915#2346])
> [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
> - shard-glk: NOTRUN -> [FAIL][153] ([i915#2346])
> [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>
> * igt@kms_display_modes@mst-extended-mode-negative:
> - shard-dg2: NOTRUN -> [SKIP][154] ([i915#8588])
> [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html
> - shard-rkl: NOTRUN -> [SKIP][155] ([i915#8588])
> [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html
> - shard-dg1: NOTRUN -> [SKIP][156] ([i915#8588])
> [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_display_modes@mst-extended-mode-negative.html
>
> * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
> - shard-rkl: NOTRUN -> [SKIP][157] ([i915#3804])
> [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
>
> * igt@kms_draw_crc@draw-method-mmap-wc:
> - shard-dg2: NOTRUN -> [SKIP][158] ([i915#8812])
> [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html
>
> * igt@kms_dsc@dsc-with-bpc-formats:
> - shard-dg2: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#3840] / [i915#4098]) +1 other test skip
> [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_dsc@dsc-with-bpc-formats.html
> - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#3840] / [i915#4098])
> [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_dsc@dsc-with-bpc-formats.html
>
> * igt@kms_dsc@dsc-with-output-formats:
> - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#3840])
> [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html
>
> * igt@kms_fbcon_fbt@fbc-suspend:
> - shard-glk: [PASS][162] -> [FAIL][163] ([i915#4767])
> [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk3/igt@kms_fbcon_fbt@fbc-suspend.html
> [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk8/igt@kms_fbcon_fbt@fbc-suspend.html
>
> * igt@kms_flip@2x-blocking-wf_vblank:
> - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3637])
> [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@kms_flip@2x-blocking-wf_vblank.html
>
> * igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
> - shard-snb: NOTRUN -> [SKIP][165] ([fdo#109271] / [fdo#111767]) +1 other test skip
> [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-snb4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
>
> * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
> - shard-dg2: NOTRUN -> [SKIP][166] ([fdo#109274] / [fdo#111767])
> [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
>
> * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
> - shard-dg2: NOTRUN -> [SKIP][167] ([fdo#109274]) +5 other tests skip
> [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
>
> * igt@kms_flip@basic-flip-vs-wf_vblank:
> - shard-rkl: NOTRUN -> [SKIP][168] ([i915#3637] / [i915#4098]) +5 other tests skip
> [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
>
> * igt@kms_flip@flip-vs-fences-interruptible:
> - shard-dg2: NOTRUN -> [SKIP][169] ([i915#8381])
> [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_flip@flip-vs-fences-interruptible.html
> - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#8381])
> [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@kms_flip@flip-vs-fences-interruptible.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
> - shard-dg2: NOTRUN -> [SKIP][171] ([i915#2672]) +3 other tests skip
> [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
> - shard-rkl: NOTRUN -> [SKIP][172] ([i915#2672]) +4 other tests skip
> [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
> - shard-dg1: NOTRUN -> [SKIP][173] ([i915#2587] / [i915#2672]) +2 other tests skip
> [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
> - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#2672]) +2 other tests skip
> [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
> - shard-rkl: [PASS][175] -> [SKIP][176] ([i915#1849] / [i915#4098] / [i915#5354]) +8 other tests skip
> [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
> [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
> - shard-dg2: NOTRUN -> [SKIP][177] ([i915#8708]) +22 other tests skip
> [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
> - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#1825]) +16 other tests skip
> [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
> - shard-tglu: NOTRUN -> [SKIP][179] ([fdo#109280]) +1 other test skip
> [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
> - shard-rkl: NOTRUN -> [SKIP][180] ([fdo#111825] / [i915#1825]) +20 other tests skip
> [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbc-tiling-y:
> - shard-dg2: NOTRUN -> [SKIP][181] ([i915#5460])
> [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
> - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8708]) +1 other test skip
> [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
> - shard-dg2: NOTRUN -> [SKIP][183] ([i915#3458]) +16 other tests skip
> [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite:
> - shard-dg1: NOTRUN -> [SKIP][184] ([i915#3458]) +3 other tests skip
> [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
> - shard-dg1: NOTRUN -> [SKIP][185] ([fdo#111825]) +12 other tests skip
> [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-rte:
> - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3023]) +9 other tests skip
> [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-rte.html
>
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
> - shard-dg2: NOTRUN -> [SKIP][187] ([i915#5354]) +30 other tests skip
> [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html
>
> * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
> - shard-rkl: NOTRUN -> [SKIP][188] ([i915#1849] / [i915#4098] / [i915#5354]) +10 other tests skip
> [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
> - shard-dg1: NOTRUN -> [SKIP][189] ([i915#8708]) +2 other tests skip
> [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
> - shard-tglu: NOTRUN -> [SKIP][190] ([fdo#110189])
> [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
>
> * igt@kms_hdr@bpc-switch:
> - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8228])
> [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_hdr@bpc-switch.html
>
> * igt@kms_invalid_mode@int-max-clock:
> - shard-rkl: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#4098]) +1 other test skip
> [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_invalid_mode@int-max-clock.html
>
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#4816])
> [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> - shard-dg2: NOTRUN -> [SKIP][194] ([i915#4816])
> [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>
> * igt@kms_panel_fitting@atomic-fastset:
> - shard-dg2: NOTRUN -> [SKIP][195] ([i915#6301])
> [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-3/igt@kms_panel_fitting@atomic-fastset.html
>
> * igt@kms_plane@plane-position-covered:
> - shard-rkl: NOTRUN -> [SKIP][196] ([i915#4098] / [i915#8825]) +2 other tests skip
> [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_plane@plane-position-covered.html
>
> * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
> - shard-glk: NOTRUN -> [FAIL][197] ([i915#4573]) +1 other test fail
> [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
>
> * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
> - shard-rkl: NOTRUN -> [FAIL][198] ([i915#8292])
> [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
>
> * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
> - shard-dg1: NOTRUN -> [FAIL][199] ([i915#8292])
> [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
>
> * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
> - shard-rkl: NOTRUN -> [SKIP][200] ([i915#5176] / [i915#9423]) +1 other test skip
> [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
>
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
> - shard-rkl: NOTRUN -> [SKIP][201] ([i915#6953] / [i915#8152])
> [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
>
> * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
> - shard-dg2: NOTRUN -> [SKIP][202] ([i915#5235]) +19 other tests skip
> [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
>
> * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
> - shard-dg1: NOTRUN -> [SKIP][203] ([i915#5235]) +7 other tests skip
> [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
>
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
> - shard-rkl: NOTRUN -> [SKIP][204] ([i915#4098] / [i915#6953] / [i915#8152]) +1 other test skip
> [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
>
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1:
> - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#5235]) +6 other tests skip
> [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1.html
>
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
> - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#5235])
> [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html
>
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2:
> - shard-rkl: NOTRUN -> [SKIP][207] ([i915#5235]) +5 other tests skip
> [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
>
> * igt@kms_prime@basic-crc-hybrid:
> - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#6524])
> [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_prime@basic-crc-hybrid.html
>
> * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
> - shard-rkl: NOTRUN -> [SKIP][209] ([i915#9683])
> [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
> - shard-dg1: NOTRUN -> [SKIP][210] ([i915#9683])
> [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
>
> * igt@kms_psr2_sf@plane-move-sf-dmg-area:
> - shard-rkl: NOTRUN -> [SKIP][211] ([fdo#111068] / [i915#9683])
> [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
>
> * igt@kms_psr2_su@frontbuffer-xrgb8888:
> - shard-tglu: NOTRUN -> [SKIP][212] ([fdo#109642] / [fdo#111068] / [i915#9683])
> [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
>
> * igt@kms_psr2_su@page_flip-xrgb8888:
> - shard-dg2: NOTRUN -> [SKIP][213] ([i915#9683]) +4 other tests skip
> [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html
> - shard-dg1: NOTRUN -> [SKIP][214] ([fdo#111068] / [i915#9683]) +1 other test skip
> [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_psr2_su@page_flip-xrgb8888.html
>
> * igt@kms_psr@psr2_dpms:
> - shard-dg2: NOTRUN -> [SKIP][215] ([i915#9673] / [i915#9732]) +5 other tests skip
> [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_psr@psr2_dpms.html
>
> * igt@kms_psr@psr2_primary_mmap_cpu:
> - shard-tglu: NOTRUN -> [SKIP][216] ([i915#9673])
> [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-8/igt@kms_psr@psr2_primary_mmap_cpu.html
>
> * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
> - shard-rkl: NOTRUN -> [SKIP][217] ([i915#9685])
> [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
>
> * igt@kms_rotation_crc@sprite-rotation-90:
> - shard-dg2: NOTRUN -> [SKIP][218] ([i915#4235])
> [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90.html
>
> * igt@kms_setmode@basic-clone-single-crtc:
> - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#4098])
> [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_setmode@basic-clone-single-crtc.html
> - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8809])
> [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@kms_setmode@basic-clone-single-crtc.html
>
> * igt@kms_sysfs_edid_timing:
> - shard-dg1: NOTRUN -> [FAIL][221] ([IGT#2] / [i915#6493])
> [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@kms_sysfs_edid_timing.html
>
> * igt@kms_tiled_display@basic-test-pattern:
> - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8623])
> [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_tiled_display@basic-test-pattern.html
> - shard-dg2: NOTRUN -> [SKIP][223] ([i915#8623])
> [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern.html
>
> * igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1:
> - shard-snb: [PASS][224] -> [FAIL][225] ([i915#9196])
> [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
> [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
>
> * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
> - shard-tglu: [PASS][226] -> [FAIL][227] ([i915#9196])
> [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
> [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
>
> * igt@kms_vblank@query-forked-busy:
> - shard-rkl: NOTRUN -> [SKIP][228] ([i915#4098]) +6 other tests skip
> [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_vblank@query-forked-busy.html
>
> * igt@kms_writeback@writeback-check-output:
> - shard-rkl: NOTRUN -> [SKIP][229] ([i915#2437])
> [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_writeback@writeback-check-output.html
>
> * igt@kms_writeback@writeback-invalid-parameters:
> - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#2437])
> [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@kms_writeback@writeback-invalid-parameters.html
>
> * igt@perf@gen8-unprivileged-single-ctx-counters:
> - shard-rkl: NOTRUN -> [SKIP][231] ([i915#2436])
> [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
>
> * igt@perf@global-sseu-config-invalid:
> - shard-dg2: NOTRUN -> [SKIP][232] ([i915#7387])
> [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@perf@global-sseu-config-invalid.html
>
> * igt@perf_pmu@busy-double-start@ccs0:
> - shard-mtlp: [PASS][233] -> [FAIL][234] ([i915#4349])
> [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html
> [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html
>
> * igt@perf_pmu@rc6@other-idle-gt0:
> - shard-dg2: NOTRUN -> [SKIP][235] ([i915#8516])
> [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html
>
> * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
> - shard-dg2: NOTRUN -> [CRASH][236] ([i915#9351])
> [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
>
> * igt@prime_udl:
> - shard-mtlp: NOTRUN -> [SKIP][237] ([fdo#109291])
> [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@prime_udl.html
>
> * igt@prime_vgem@coherency-gtt:
> - shard-dg2: NOTRUN -> [SKIP][238] ([i915#3708] / [i915#4077]) +1 other test skip
> [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@prime_vgem@coherency-gtt.html
>
> * igt@prime_vgem@fence-read-hang:
> - shard-rkl: NOTRUN -> [SKIP][239] ([fdo#109295] / [i915#3708])
> [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@prime_vgem@fence-read-hang.html
> - shard-dg1: NOTRUN -> [SKIP][240] ([i915#3708])
> [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@prime_vgem@fence-read-hang.html
>
> * igt@v3d/v3d_perfmon@create-perfmon-0:
> - shard-dg1: NOTRUN -> [SKIP][241] ([i915#2575]) +3 other tests skip
> [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@v3d/v3d_perfmon@create-perfmon-0.html
>
> * igt@v3d/v3d_submit_cl@simple-flush-cache:
> - shard-rkl: NOTRUN -> [SKIP][242] ([fdo#109315]) +8 other tests skip
> [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@v3d/v3d_submit_cl@simple-flush-cache.html
>
> * igt@v3d/v3d_submit_csd@bad-bo:
> - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#2575]) +4 other tests skip
> [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@v3d/v3d_submit_csd@bad-bo.html
>
> * igt@v3d/v3d_submit_csd@job-perfmon:
> - shard-dg2: NOTRUN -> [SKIP][244] ([i915#2575]) +12 other tests skip
> [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@v3d/v3d_submit_csd@job-perfmon.html
>
> * igt@vc4/vc4_mmap@mmap-bo:
> - shard-dg2: NOTRUN -> [SKIP][245] ([i915#7711]) +11 other tests skip
> [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@vc4/vc4_mmap@mmap-bo.html
>
> * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
> - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#7711]) +2 other tests skip
> [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
>
> * igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
> - shard-tglu: NOTRUN -> [SKIP][247] ([i915#2575])
> [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-4/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
>
> * igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
> - shard-rkl: NOTRUN -> [SKIP][248] ([i915#7711]) +4 other tests skip
> [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
> - shard-dg1: NOTRUN -> [SKIP][249] ([i915#7711]) +2 other tests skip
> [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-14/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
>
>
> #### Possible fixes ####
>
> * igt@fbdev@nullptr:
> - shard-rkl: [SKIP][250] ([i915#2582]) -> [PASS][251] +1 other test pass
> [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@fbdev@nullptr.html
> [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@fbdev@nullptr.html
>
> * igt@gem_eio@unwedge-stress:
> - shard-dg1: [FAIL][252] ([i915#5784]) -> [PASS][253] +1 other test pass
> [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-15/igt@gem_eio@unwedge-stress.html
> [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@gem_eio@unwedge-stress.html
>
> * igt@gem_exec_fair@basic-pace-share@rcs0:
> - shard-glk: [FAIL][254] ([i915#2842]) -> [PASS][255]
> [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
> [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
> - shard-rkl: [FAIL][256] ([i915#2842]) -> [PASS][257] +1 other test pass
> [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
> [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
>
> * igt@gem_exec_fair@basic-pace@rcs0:
> - shard-tglu: [FAIL][258] ([i915#2842]) -> [PASS][259]
> [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-9/igt@gem_exec_fair@basic-pace@rcs0.html
> [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html
>
> * igt@gem_lmem_swapping@smem-oom@lmem0:
> - shard-dg1: [TIMEOUT][260] ([i915#5493]) -> [PASS][261]
> [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
> [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
>
> * igt@gem_mmap_wc@set-cache-level:
> - shard-rkl: [SKIP][262] ([i915#1850]) -> [PASS][263]
> [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@gem_mmap_wc@set-cache-level.html
> [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@gem_mmap_wc@set-cache-level.html
>
> * igt@i915_module_load@reload-with-fault-injection:
> - shard-dg2: [WARN][264] ([i915#7356]) -> [PASS][265]
> [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html
> [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
>
> * {igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0}:
> - shard-dg1: [FAIL][266] ([i915#3591]) -> [PASS][267]
> [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
> [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
>
> * igt@i915_selftest@live@gem_contexts:
> - shard-mtlp: [DMESG-FAIL][268] -> [PASS][269]
> [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-3/igt@i915_selftest@live@gem_contexts.html
> [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@i915_selftest@live@gem_contexts.html
>
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
> - shard-mtlp: [FAIL][270] ([i915#5138]) -> [PASS][271]
> [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
> [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
> - shard-tglu: [FAIL][272] ([i915#3743]) -> [PASS][273] +1 other test pass
> [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
> [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
>
> * igt@kms_color@ctm-green-to-red@pipe-b:
> - shard-rkl: [SKIP][274] ([i915#4098]) -> [PASS][275] +12 other tests pass
> [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_color@ctm-green-to-red@pipe-b.html
> [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_color@ctm-green-to-red@pipe-b.html
>
> * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
> - shard-rkl: [SKIP][276] ([i915#1845] / [i915#4098]) -> [PASS][277] +18 other tests pass
> [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
> [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
>
> * igt@kms_cursor_legacy@single-move@all-pipes:
> - shard-mtlp: [DMESG-WARN][278] ([i915#2017]) -> [PASS][279]
> [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html
> [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@kms_cursor_legacy@single-move@all-pipes.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
> - shard-dg2: [FAIL][280] ([i915#6880]) -> [PASS][281] +1 other test pass
> [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
> [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
> - shard-rkl: [SKIP][282] ([i915#1849] / [i915#4098] / [i915#5354]) -> [PASS][283] +14 other tests pass
> [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
> [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
>
> * {igt@kms_plane@planar-pixel-format-settings}:
> - shard-rkl: [SKIP][284] ([i915#9581]) -> [PASS][285]
> [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_plane@planar-pixel-format-settings.html
> [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_plane@planar-pixel-format-settings.html
>
> * {igt@kms_pm_rpm@modeset-lpsp}:
> - shard-dg2: [SKIP][286] ([i915#9519]) -> [PASS][287]
> [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp.html
> [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
>
> * {igt@kms_pm_rpm@modeset-lpsp-stress-no-wait}:
> - shard-rkl: [SKIP][288] ([i915#9519]) -> [PASS][289]
> [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
> [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
>
> * igt@kms_properties@plane-properties-atomic:
> - shard-rkl: [SKIP][290] ([i915#1849] / [i915#4098]) -> [PASS][291] +2 other tests pass
> [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_properties@plane-properties-atomic.html
> [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_properties@plane-properties-atomic.html
>
> * igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1:
> - shard-snb: [FAIL][292] ([i915#9196]) -> [PASS][293]
> [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html
> [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html
>
> * igt@perf_pmu@multi-client@vcs0:
> - shard-mtlp: [FAIL][294] ([i915#4349]) -> [PASS][295]
> [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-5/igt@perf_pmu@multi-client@vcs0.html
> [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-3/igt@perf_pmu@multi-client@vcs0.html
>
> * igt@perf_pmu@render-node-busy-idle@vcs1:
> - shard-dg1: [FAIL][296] ([i915#4349]) -> [PASS][297] +2 other tests pass
> [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-19/igt@perf_pmu@render-node-busy-idle@vcs1.html
> [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@perf_pmu@render-node-busy-idle@vcs1.html
>
> * igt@prime_vgem@fence-wait@vcs1:
> - shard-mtlp: [ABORT][298] -> [PASS][299]
> [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@prime_vgem@fence-wait@vcs1.html
> [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@prime_vgem@fence-wait@vcs1.html
>
> * igt@prime_vgem@fence-wait@vecs0:
> - shard-mtlp: [DMESG-WARN][300] ([i915#8875]) -> [PASS][301]
> [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@prime_vgem@fence-wait@vecs0.html
> [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@prime_vgem@fence-wait@vecs0.html
>
>
> #### Warnings ####
>
> * igt@kms_async_flips@crc@pipe-d-edp-1:
> - shard-mtlp: [FAIL][302] ([i915#8247]) -> [DMESG-FAIL][303] ([i915#8561]) +3 other tests dmesg-fail
> [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@kms_async_flips@crc@pipe-d-edp-1.html
> [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_async_flips@crc@pipe-d-edp-1.html
>
> * igt@kms_big_fb@4-tiled-addfb:
> - shard-rkl: [SKIP][304] ([i915#1845] / [i915#4098]) -> [SKIP][305] ([i915#5286]) +7 other tests skip
> [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html
> [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html
>
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> - shard-rkl: [SKIP][306] ([i915#5286]) -> [SKIP][307] ([i915#1845] / [i915#4098]) +4 other tests skip
> [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>
> * igt@kms_big_fb@linear-8bpp-rotate-270:
> - shard-rkl: [SKIP][308] ([fdo#111614] / [i915#3638]) -> [SKIP][309] ([i915#1845] / [i915#4098]) +7 other tests skip
> [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html
> [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
>
> * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
> - shard-rkl: [SKIP][310] ([i915#1845] / [i915#4098]) -> [SKIP][311] ([fdo#111614] / [i915#3638]) +1 other test skip
> [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
> [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
>
> * igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
> - shard-rkl: [SKIP][312] ([fdo#110723]) -> [SKIP][313] ([i915#1845] / [i915#4098]) +4 other tests skip
> [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
> [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
>
> * igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
> - shard-rkl: [SKIP][314] ([i915#1845] / [i915#4098]) -> [SKIP][315] ([fdo#110723]) +7 other tests skip
> [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
> [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
>
> * igt@kms_big_fb@yf-tiled-addfb:
> - shard-rkl: [SKIP][316] ([i915#1845] / [i915#4098]) -> [SKIP][317] ([fdo#111615])
> [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@yf-tiled-addfb.html
> [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb.html
>
> * igt@kms_content_protection@atomic-dpms:
> - shard-rkl: [SKIP][318] ([i915#7118]) -> [SKIP][319] ([i915#1845] / [i915#4098])
> [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html
> [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_content_protection@atomic-dpms.html
>
> * igt@kms_content_protection@dp-mst-lic-type-1:
> - shard-rkl: [SKIP][320] ([i915#3116]) -> [SKIP][321] ([i915#1845] / [i915#4098])
> [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
> [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-1.html
>
> * igt@kms_content_protection@dp-mst-type-1:
> - shard-rkl: [SKIP][322] ([i915#1845] / [i915#4098]) -> [SKIP][323] ([i915#3116])
> [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_content_protection@dp-mst-type-1.html
> [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1.html
>
> * igt@kms_content_protection@srm:
> - shard-rkl: [SKIP][324] ([i915#1845] / [i915#4098]) -> [SKIP][325] ([i915#7118]) +1 other test skip
> [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_content_protection@srm.html
> [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_content_protection@srm.html
>
> * igt@kms_content_protection@type1:
> - shard-dg2: [SKIP][326] ([i915#7118] / [i915#7162]) -> [SKIP][327] ([i915#7118])
> [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-11/igt@kms_content_protection@type1.html
> [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-7/igt@kms_content_protection@type1.html
>
> * igt@kms_cursor_crc@cursor-offscreen-512x170:
> - shard-rkl: [SKIP][328] ([i915#1845] / [i915#4098]) -> [SKIP][329] ([fdo#109279] / [i915#3359])
> [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
> [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
>
> * igt@kms_cursor_crc@cursor-offscreen-512x512:
> - shard-rkl: [SKIP][330] ([i915#3359]) -> [SKIP][331] ([i915#1845] / [i915#4098])
> [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
> [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html
>
> * igt@kms_cursor_crc@cursor-random-512x170:
> - shard-rkl: [SKIP][332] ([i915#1845] / [i915#4098]) -> [SKIP][333] ([i915#3359])
> [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x170.html
> [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html
>
> * igt@kms_cursor_crc@cursor-sliding-32x10:
> - shard-rkl: [SKIP][334] ([i915#3555]) -> [SKIP][335] ([i915#1845] / [i915#4098]) +2 other tests skip
> [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
> [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
>
> * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
> - shard-rkl: [SKIP][336] ([fdo#111767] / [fdo#111825]) -> [SKIP][337] ([i915#1845] / [i915#4098]) +1 other test skip
> [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
> [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
> - shard-rkl: [SKIP][338] ([i915#1845] / [i915#4098]) -> [SKIP][339] ([fdo#111825]) +5 other tests skip
> [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
> [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
> - shard-rkl: [SKIP][340] ([fdo#111825]) -> [SKIP][341] ([i915#1845] / [i915#4098]) +3 other tests skip
> [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
> [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
>
> * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
> - shard-rkl: [SKIP][342] ([i915#1845] / [i915#4098]) -> [SKIP][343] ([i915#4103])
> [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
> [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
>
> * igt@kms_dsc@dsc-fractional-bpp:
> - shard-rkl: [SKIP][344] ([i915#4098]) -> [SKIP][345] ([i915#3840])
> [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp.html
> [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html
>
> * igt@kms_dsc@dsc-with-bpc-formats:
> - shard-rkl: [SKIP][346] ([i915#3555] / [i915#3840]) -> [SKIP][347] ([i915#1845] / [i915#4098])
> [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_dsc@dsc-with-bpc-formats.html
> [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_dsc@dsc-with-bpc-formats.html
>
> * igt@kms_fbcon_fbt@psr-suspend:
> - shard-rkl: [SKIP][348] ([fdo#110189] / [i915#3955]) -> [SKIP][349] ([i915#3955])
> [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
> [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html
>
> * igt@kms_force_connector_basic@force-load-detect:
> - shard-rkl: [SKIP][350] ([fdo#109285] / [i915#4098]) -> [SKIP][351] ([fdo#109285])
> [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html
> [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
> - shard-rkl: [SKIP][352] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][353] ([i915#3023]) +17 other tests skip
> [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
> [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
> - shard-rkl: [SKIP][354] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][355] ([fdo#111825]) +2 other tests skip
> [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
> [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
> - shard-rkl: [SKIP][356] ([fdo#111825] / [i915#1825]) -> [SKIP][357] ([i915#1849] / [i915#4098] / [i915#5354]) +29 other tests skip
> [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
> [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
> - shard-rkl: [SKIP][358] ([fdo#111825]) -> [SKIP][359] ([i915#1849] / [i915#4098] / [i915#5354])
> [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
> [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
> - shard-rkl: [SKIP][360] ([i915#5439]) -> [SKIP][361] ([i915#1849] / [i915#4098] / [i915#5354])
> [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
> [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
> - shard-rkl: [SKIP][362] ([i915#3023]) -> [SKIP][363] ([i915#1849] / [i915#4098] / [i915#5354]) +14 other tests skip
> [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
> [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
>
> * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
> - shard-rkl: [SKIP][364] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][365] ([fdo#111825] / [i915#1825]) +30 other tests skip
> [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
> [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
>
> * igt@kms_hdr@invalid-hdr:
> - shard-rkl: [SKIP][366] ([i915#4098]) -> [SKIP][367] ([i915#3555] / [i915#8228])
> [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_hdr@invalid-hdr.html
> [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_hdr@invalid-hdr.html
>
> * igt@kms_hdr@static-swap:
> - shard-rkl: [SKIP][368] ([i915#3555] / [i915#8228]) -> [SKIP][369] ([i915#1845] / [i915#4098]) +2 other tests skip
> [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_hdr@static-swap.html
> [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_hdr@static-swap.html
>
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> - shard-rkl: [SKIP][370] ([i915#4816]) -> [SKIP][371] ([i915#4070] / [i915#4816])
> [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>
> * igt@kms_panel_fitting@legacy:
> - shard-rkl: [SKIP][372] ([i915#1845] / [i915#4098]) -> [SKIP][373] ([i915#6301])
> [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_panel_fitting@legacy.html
> [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_panel_fitting@legacy.html
>
> * igt@kms_psr@psr2_cursor_mmap_cpu:
> - shard-dg2: [SKIP][374] ([i915#9673] / [i915#9732]) -> [SKIP][375] ([i915#9673])
> [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-2/igt@kms_psr@psr2_cursor_mmap_cpu.html
> [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_psr@psr2_cursor_mmap_cpu.html
>
> * igt@kms_psr@psr2_cursor_mmap_gtt:
> - shard-dg2: [SKIP][376] ([i915#9673] / [i915#9736]) -> [SKIP][377] ([i915#9673] / [i915#9732]) +1 other test skip
> [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-11/igt@kms_psr@psr2_cursor_mmap_gtt.html
> [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_psr@psr2_cursor_mmap_gtt.html
> - shard-rkl: [SKIP][378] ([i915#9673]) -> [SKIP][379] ([i915#9673] / [i915#9732]) +2 other tests skip
> [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_psr@psr2_cursor_mmap_gtt.html
> [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_psr@psr2_cursor_mmap_gtt.html
>
> * igt@kms_psr@psr2_cursor_render:
> - shard-rkl: [SKIP][380] ([i915#9673] / [i915#9732]) -> [SKIP][381] ([i915#9673])
> [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_psr@psr2_cursor_render.html
> [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_psr@psr2_cursor_render.html
>
> * igt@kms_psr@psr2_sprite_render:
> - shard-dg2: [SKIP][382] ([i915#9673] / [i915#9732]) -> [SKIP][383] ([i915#9673] / [i915#9736]) +1 other test skip
> [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-5/igt@kms_psr@psr2_sprite_render.html
> [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_psr@psr2_sprite_render.html
>
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
> - shard-rkl: [SKIP][384] ([i915#1845] / [i915#4098]) -> [SKIP][385] ([fdo#111615] / [i915#5289]) +1 other test skip
> [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
> [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
>
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
> - shard-rkl: [SKIP][386] ([fdo#111615] / [i915#5289]) -> [SKIP][387] ([i915#1845] / [i915#4098])
> [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
> [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
>
> * igt@kms_scaling_modes@scaling-mode-none:
> - shard-rkl: [SKIP][388] ([i915#1845] / [i915#4098]) -> [SKIP][389] ([i915#3555]) +1 other test skip
> [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_scaling_modes@scaling-mode-none.html
> [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html
>
>
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
> [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
> [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
> [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
> [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
> [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
> [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
> [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
> [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
> [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
> [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
> [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
> [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
> [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
> [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
> [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
> [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
> [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
> [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
> [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
> [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
> [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
> [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
> [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
> [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
> [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
> [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
> [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
> [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
> [i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
> [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
> [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
> [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
> [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
> [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
> [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
> [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
> [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
> [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
> [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
> [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
> [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
> [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
> [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
> [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
> [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
> [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
> [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
> [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
> [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
> [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
> [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
> [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
> [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
> [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
> [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
> [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
> [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
> [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
> [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
> [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
> [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
> [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
> [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
> [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
> [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
> [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
> [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
> [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
> [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
> [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
> [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
> [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
> [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
> [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
> [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
> [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
> [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
> [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
> [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
> [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
> [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
> [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
> [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
> [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
> [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
> [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
> [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
> [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
> [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
> [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
> [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
> [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
> [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
> [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
> [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
> [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
> [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
> [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
> [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
> [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
> [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
> [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
> [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
> [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
> [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
> [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229
> [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
> [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
> [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
> [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
> [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
> [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
> [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
> [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
> [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
> [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
> [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
> [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
> [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
> [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
> [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356
> [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
> [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
> [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
> [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
> [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
> [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
> [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
> [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
> [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
> [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
> [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
> [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
> [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
> [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
> [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
> [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
> [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
> [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
> [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
> [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
> [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
> [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
> [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
> [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
> [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
> [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717
> [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
> [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
> [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
> [i915#8825]: https://gitlab.freedesktop.org/drm/intel/issues/8825
> [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
> [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
> [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
> [i915#9157]: https://gitlab.freedesktop.org/drm/intel/issues/9157
> [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
> [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
> [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293
> [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
> [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
> [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
> [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
> [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
> [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
> [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
> [i915#9581]: https://gitlab.freedesktop.org/drm/intel/issues/9581
> [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
> [i915#9653]: https://gitlab.freedesktop.org/drm/intel/issues/9653
> [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
> [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
> [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
> [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
> [i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697
> [i915#9715]: https://gitlab.freedesktop.org/drm/intel/issues/9715
> [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
> [i915#9736]: https://gitlab.freedesktop.org/drm/intel/issues/9736
>
>
> Build changes
> -------------
>
> * CI: CI-20190529 -> None
> * IGT: IGT_7612 -> IGTPW_10309
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_13955: d835c627d25ba8775624ff3e854d034708044ac3 @ git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_10309: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/index.html
> IGT_7612: b5c47966901ee1060bcb9d4bccdd3ccec9651ef4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/index.html
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,v2,1/2] tests/intel/xe_create: sanity check all MBZ fields
2023-11-30 17:18 [igt-dev] [PATCH i-g-t v2 1/2] tests/intel/xe_create: sanity check all MBZ fields Matthew Auld
` (4 preceding siblings ...)
2023-12-01 20:31 ` [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,v2,1/2] " Patchwork
@ 2023-12-05 12:55 ` Patchwork
2023-12-05 14:02 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-12-05 12:55 UTC (permalink / raw)
To: Matthew Auld; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100306 bytes --]
== Series Details ==
Series: series starting with [i-g-t,v2,1/2] tests/intel/xe_create: sanity check all MBZ fields
URL : https://patchwork.freedesktop.org/series/127134/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13955_full -> IGTPW_10309_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10309_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10309_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_10309/index.html
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10309_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-glk: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
Known issues
------------
Here are the changes found in IGTPW_10309_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8414]) +5 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@drm_fdinfo@busy@vcs0.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][4] ([i915#7742])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][5] -> [FAIL][6] ([i915#7742])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +21 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-15/igt@drm_fdinfo@virtual-busy-all.html
* igt@fbdev@pan:
- shard-rkl: [PASS][9] -> [SKIP][10] ([i915#2582])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@fbdev@pan.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@fbdev@pan.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#3281]) +4 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#3281]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-15/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-7/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][15] -> [INCOMPLETE][16] ([i915#7297])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#6335])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8562])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#8562])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_create@create-ext-set-pat.html
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8562])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-16/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: NOTRUN -> [FAIL][21] ([i915#6268])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-mtlp: NOTRUN -> [SKIP][22] ([fdo#109314])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#8555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@in-flight-immediate:
- shard-mtlp: [PASS][26] -> [ABORT][27] ([i915#9262])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-1/igt@gem_eio@in-flight-immediate.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@gem_eio@in-flight-immediate.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#4771])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#8555]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#6334])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-glk: NOTRUN -> [FAIL][33] ([i915#9606])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk8/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-deadline:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [PASS][35] -> [FAIL][36] ([i915#2842]) +1 other test fail
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-7/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-rkl: NOTRUN -> [FAIL][37] ([i915#2842])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@gem_exec_fair@basic-none-vip@rcs0.html
- shard-glk: NOTRUN -> [FAIL][38] ([i915#2842])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk3/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-rkl: [PASS][39] -> [FAIL][40] ([i915#2842]) +2 other tests fail
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@gem_exec_fair@basic-none@rcs0.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-pace-share:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4812])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_exec_fence@submit67.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][44] ([fdo#112283]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +8 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4812]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: [PASS][49] -> [ABORT][50] ([i915#7975] / [i915#8213])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4860])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-glk: NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#4613])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_lmem_swapping@verify.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#8289])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-5/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4077]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-3/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@basic-wc:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4077]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@gem_mmap_gtt@basic-wc.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +15 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4083])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +7 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@gem_mmap_wc@close.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@display:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_pread@display.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#4270]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4270])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#8411])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4079])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4079])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4079])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#4885])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][74] ([i915#5889])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@gem_spin_batch@spin-all-new.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#3323])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#3323])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#3297])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4880]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4958])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_userptr_blits@sd-probe.html
* igt@gen3_render_linear_blits:
- shard-rkl: NOTRUN -> [SKIP][81] ([fdo#109289]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gen3_render_linear_blits.html
* igt@gen7_exec_parse@basic-allocation:
- shard-mtlp: NOTRUN -> [SKIP][82] ([fdo#109289]) +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@gen7_exec_parse@basic-allocation.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][83] ([fdo#109289]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#2527])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#2527]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-out:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#2856]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [PASS][88] -> [ABORT][89] ([i915#9697])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#7091])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [PASS][91] -> [FAIL][92] ([i915#3591])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-rkl: NOTRUN -> [SKIP][93] ([fdo#109293] / [fdo#109506])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#6621])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#8925])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#8925])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#6188])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][98] ([fdo#109302])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-3/igt@i915_query@query-topology-unsupported.html
* igt@i915_selftest@live@gt_mocs:
- shard-mtlp: [PASS][99] -> [DMESG-WARN][100] ([i915#9715])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-3/igt@i915_selftest@live@gt_mocs.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][101] ([i915#9311])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#4212])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
- shard-mtlp: [PASS][103] -> [DMESG-WARN][104] ([i915#2017] / [i915#9157])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-vga-1-linear:
- shard-snb: NOTRUN -> [SKIP][105] ([fdo#109271]) +7 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-snb7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-vga-1-linear.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#8709]) +7 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#8709]) +11 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][108] ([i915#8247]) +3 other tests fail
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6229])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#1769] / [i915#3555])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][111] ([fdo#111614]) +5 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5286]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][113] ([fdo#111614])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#5286])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][115] -> [FAIL][116] ([i915#5138]) +1 other test fail
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#3638]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][118] ([fdo#111614] / [i915#3638])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#5190]) +14 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-14/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5190]) +4 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][122] ([fdo#110723])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6187]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][124] ([fdo#111615]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#2705])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#5354] / [i915#6095]) +13 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-gen12-rc-ccs:
- shard-rkl: [PASS][127] -> [SKIP][128] ([i915#4098]) +10 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-gen12-rc-ccs.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#5354]) +91 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
- shard-glk: NOTRUN -> [SKIP][130] ([fdo#109271]) +68 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk2/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#5354] / [i915#6095]) +13 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf-tiled-ccs.html
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#5354] / [i915#6095]) +11 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-10/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf-tiled-ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#5354]) +20 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#5354] / [i915#6095]) +14 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf-tiled-ccs.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#4087]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@dp-audio:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#7828]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2: NOTRUN -> [SKIP][137] ([fdo#111827]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][138] ([fdo#111827])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#7828]) +7 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#7828])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#7828]) +6 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#7828]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-16/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6944]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#3299])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#7118])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#3555] / [i915#8814]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][147] ([fdo#109279] / [i915#3359])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#3359])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#3555])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#3555]) +5 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#3555]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-14/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#3359])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#3555]) +4 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][154] ([fdo#109274] / [i915#5354]) +7 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3546]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-rkl: [PASS][157] -> [SKIP][158] ([i915#1845] / [i915#4098]) +13 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#1845] / [i915#4098]) +21 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][160] ([fdo#111825]) +5 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][161] -> [FAIL][162] ([i915#2346])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][163] ([i915#2346])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#4098])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#8588])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#8588])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#8588])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#3804])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#8812])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3840] / [i915#4098]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840] / [i915#4098])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#3840] / [i915#9053])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: [PASS][174] -> [FAIL][175] ([i915#4767])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk3/igt@kms_fbcon_fbt@fbc-suspend.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk8/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#1839])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3637])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-snb: NOTRUN -> [SKIP][178] ([fdo#109271] / [fdo#111767]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-snb4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-dg2: NOTRUN -> [SKIP][179] ([fdo#109274] / [fdo#111767])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2: NOTRUN -> [SKIP][180] ([fdo#109274]) +5 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3637] / [i915#4098]) +5 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#8381])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_flip@flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8381])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#2672]) +3 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#2672]) +4 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#2587] / [i915#2672]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2672]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: [PASS][188] -> [SKIP][189] ([i915#1849] / [i915#4098] / [i915#5354]) +8 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#8708]) +22 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#1825]) +16 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][192] ([fdo#109280]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][193] ([fdo#111825] / [i915#1825]) +20 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#5460])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#8708]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#3458]) +16 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#3458]) +3 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][198] ([fdo#111825]) +12 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#9653])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#3023]) +9 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#1849] / [i915#4098] / [i915#5354]) +10 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#8708]) +2 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][203] ([fdo#110189])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#8228])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_hdr@bpc-switch.html
* igt@kms_invalid_mode@int-max-clock:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#4098]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_invalid_mode@int-max-clock.html
* igt@kms_lease@lease-invalid-plane:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#4098]) +16 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_lease@lease-invalid-plane.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#4816])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#4816])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#6301])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@plane-position-covered:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#4098] / [i915#8825]) +2 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_plane@plane-position-covered.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][211] ([i915#4573]) +1 other test fail
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][212] ([i915#8292])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][213] ([i915#8292])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#9423]) +3 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#9423]) +5 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#9423]) +7 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#5176] / [i915#9423]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#8152]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#6953] / [i915#8152])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#5235]) +19 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#5235]) +7 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#4098] / [i915#6953] / [i915#8152]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#5235]) +6 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#5235])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#5235]) +5 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#3546])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-4/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#5354])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-15/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#9685])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-rkl: [PASS][229] -> [SKIP][230] ([i915#9293])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_pm_dc@dc5-dpms-negative.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#9685]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#9519])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg2: [PASS][233] -> [FAIL][234] ([i915#8717])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-7/igt@kms_pm_rpm@i2c.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#9519]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][236] -> [SKIP][237] ([i915#9519]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#6524])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#9683])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#9683])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][241] ([fdo#111068] / [i915#9683])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][242] ([fdo#109642] / [fdo#111068] / [i915#9683])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#9683]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][244] ([fdo#111068] / [i915#9683]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@pr_cursor_render:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#9688])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_psr@pr_cursor_render.html
* igt@kms_psr@pr_primary_mmap_cpu:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#9673] / [i915#9732]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@kms_psr@pr_primary_mmap_cpu.html
* igt@kms_psr@psr2_dpms:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#9673] / [i915#9732]) +12 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_psr@psr2_dpms.html
* igt@kms_psr@psr2_primary_mmap_cpu:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#9673])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-8/igt@kms_psr@psr2_primary_mmap_cpu.html
* igt@kms_psr@psr_cursor_plane_move:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#9673]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_psr@psr_cursor_plane_move.html
* igt@kms_psr@psr_primary_mmap_gtt:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#9673] / [i915#9732]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_psr@psr_primary_mmap_gtt.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#4235])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#4098])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_setmode@basic-clone-single-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8809])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg1: NOTRUN -> [FAIL][254] ([IGT#2] / [i915#6493])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#8623])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#8623])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1:
- shard-snb: [PASS][257] -> [FAIL][258] ([i915#9196])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [PASS][259] -> [FAIL][260] ([i915#9196])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4:
- shard-dg1: [PASS][261] -> [FAIL][262] ([i915#9196])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-16/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#2437])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#2437])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#2436])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#7387])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: [PASS][267] -> [FAIL][268] ([i915#4349])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#8516])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][270] ([i915#9351])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_udl:
- shard-mtlp: NOTRUN -> [SKIP][271] ([fdo#109291])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@prime_udl.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#3708] / [i915#4077]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][273] ([fdo#109295] / [i915#3708])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@prime_vgem@fence-read-hang.html
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#3708])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@prime_vgem@fence-read-hang.html
* igt@v3d/v3d_perfmon@create-perfmon-0:
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#2575]) +3 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@v3d/v3d_perfmon@create-perfmon-0.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-rkl: NOTRUN -> [SKIP][276] ([fdo#109315]) +8 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#2575]) +4 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#2575]) +12 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#7711]) +11 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#7711]) +2 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
* igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#2575])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-4/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#7711]) +4 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#7711]) +2 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-14/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@fbdev@nullptr:
- shard-rkl: [SKIP][284] ([i915#2582]) -> [PASS][285] +1 other test pass
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@fbdev@nullptr.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@fbdev@nullptr.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][286] ([i915#5784]) -> [PASS][287] +1 other test pass
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-15/igt@gem_eio@unwedge-stress.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][288] ([i915#2842]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-rkl: [FAIL][290] ([i915#2842]) -> [PASS][291] +1 other test pass
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][292] ([i915#2842]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-9/igt@gem_exec_fair@basic-pace@rcs0.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][294] ([i915#5493]) -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_wc@set-cache-level:
- shard-rkl: [SKIP][296] ([i915#1850]) -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@gem_mmap_wc@set-cache-level.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@gem_mmap_wc@set-cache-level.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [WARN][298] ([i915#7356]) -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [FAIL][300] ([i915#3591]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_selftest@live@gem_contexts:
- shard-mtlp: [DMESG-FAIL][302] ([i915#9780]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-3/igt@i915_selftest@live@gem_contexts.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@i915_selftest@live@gem_contexts.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][304] ([i915#5138]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [FAIL][306] ([i915#3743]) -> [PASS][307] +1 other test pass
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_color@ctm-green-to-red@pipe-b:
- shard-rkl: [SKIP][308] ([i915#4098]) -> [PASS][309] +12 other tests pass
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_color@ctm-green-to-red@pipe-b.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_color@ctm-green-to-red@pipe-b.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
- shard-rkl: [SKIP][310] ([i915#1845] / [i915#4098]) -> [PASS][311] +18 other tests pass
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
* igt@kms_cursor_legacy@single-move@all-pipes:
- shard-mtlp: [DMESG-WARN][312] ([i915#2017]) -> [PASS][313]
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@kms_cursor_legacy@single-move@all-pipes.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [FAIL][314] ([i915#6880]) -> [PASS][315] +1 other test pass
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][316] ([i915#1849] / [i915#4098] / [i915#5354]) -> [PASS][317] +14 other tests pass
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_plane@planar-pixel-format-settings:
- shard-rkl: [SKIP][318] ([i915#9581]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_plane@planar-pixel-format-settings.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_plane@planar-pixel-format-settings.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][320] ([i915#9519]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][322] ([i915#9519]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_properties@plane-properties-atomic:
- shard-rkl: [SKIP][324] ([i915#1849] / [i915#4098]) -> [PASS][325] +2 other tests pass
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_properties@plane-properties-atomic.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_properties@plane-properties-atomic.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1:
- shard-snb: [FAIL][326] ([i915#9196]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html
* igt@perf_pmu@multi-client@vcs0:
- shard-mtlp: [FAIL][328] ([i915#4349]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-5/igt@perf_pmu@multi-client@vcs0.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-3/igt@perf_pmu@multi-client@vcs0.html
* igt@perf_pmu@render-node-busy-idle@vcs1:
- shard-dg1: [FAIL][330] ([i915#4349]) -> [PASS][331] +2 other tests pass
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-19/igt@perf_pmu@render-node-busy-idle@vcs1.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@perf_pmu@render-node-busy-idle@vcs1.html
* igt@prime_vgem@fence-wait@vcs1:
- shard-mtlp: [ABORT][332] -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@prime_vgem@fence-wait@vcs1.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@prime_vgem@fence-wait@vcs1.html
* igt@prime_vgem@fence-wait@vecs0:
- shard-mtlp: [DMESG-WARN][334] ([i915#8875]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@prime_vgem@fence-wait@vecs0.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@prime_vgem@fence-wait@vecs0.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-tglu: [WARN][336] ([i915#2681]) -> [FAIL][337] ([i915#2681] / [i915#3591])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: [FAIL][338] ([i915#8247]) -> [DMESG-FAIL][339] ([i915#8561]) +3 other tests dmesg-fail
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@kms_async_flips@crc@pipe-d-edp-1.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][340] ([i915#1845] / [i915#4098]) -> [SKIP][341] ([i915#5286]) +7 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][342] ([i915#5286]) -> [SKIP][343] ([i915#1845] / [i915#4098]) +4 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][344] ([fdo#111614] / [i915#3638]) -> [SKIP][345] ([i915#1845] / [i915#4098]) +7 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: [SKIP][346] ([i915#1845] / [i915#4098]) -> [SKIP][347] ([fdo#111614] / [i915#3638]) +1 other test skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-rkl: [SKIP][348] ([fdo#110723]) -> [SKIP][349] ([i915#1845] / [i915#4098]) +4 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][350] ([i915#1845] / [i915#4098]) -> [SKIP][351] ([fdo#110723]) +7 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-rkl: [SKIP][352] ([i915#1845] / [i915#4098]) -> [SKIP][353] ([fdo#111615])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@yf-tiled-addfb.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_ccs@pipe-a-random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-rkl: [SKIP][354] ([i915#5354] / [i915#6095]) -> [SKIP][355] ([i915#4098]) +19 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_ccs@pipe-a-random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_ccs@pipe-a-random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][356] ([i915#4098]) -> [SKIP][357] ([i915#5354] / [i915#6095]) +22 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [SKIP][358] ([i915#5354]) -> [SKIP][359] ([i915#4098]) +17 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-rkl: [SKIP][360] ([i915#4098]) -> [SKIP][361] ([i915#5354]) +25 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: [SKIP][362] ([i915#7118]) -> [SKIP][363] ([i915#1845] / [i915#4098])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: [SKIP][364] ([i915#3116]) -> [SKIP][365] ([i915#1845] / [i915#4098])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][366] ([i915#1845] / [i915#4098]) -> [SKIP][367] ([i915#3116])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_content_protection@dp-mst-type-1.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: [SKIP][368] ([i915#9424]) -> [SKIP][369] ([i915#8063])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_content_protection@mei-interface.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_content_protection@mei-interface.html
- shard-dg1: [SKIP][370] ([i915#9424]) -> [SKIP][371] ([i915#9433])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-18/igt@kms_content_protection@mei-interface.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-16/igt@kms_content_protection@mei-interface.html
- shard-tglu: [SKIP][372] ([i915#9424]) -> [SKIP][373] ([i915#8063])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-3/igt@kms_content_protection@mei-interface.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-3/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][374] ([i915#1845] / [i915#4098]) -> [SKIP][375] ([i915#7118]) +1 other test skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_content_protection@srm.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][376] ([i915#7118] / [i915#7162]) -> [SKIP][377] ([i915#7118])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-11/igt@kms_content_protection@type1.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: [SKIP][378] ([i915#1845] / [i915#4098]) -> [SKIP][379] ([fdo#109279] / [i915#3359])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: [SKIP][380] ([i915#3359]) -> [SKIP][381] ([i915#1845] / [i915#4098])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][382] ([i915#1845] / [i915#4098]) -> [SKIP][383] ([i915#3359])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x170.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: [SKIP][384] ([i915#3555]) -> [SKIP][385] ([i915#1845] / [i915#4098]) +2 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-rkl: [SKIP][386] ([fdo#111767] / [fdo#111825]) -> [SKIP][387] ([i915#1845] / [i915#4098]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-rkl: [SKIP][388] ([i915#1845] / [i915#4098]) -> [SKIP][389] ([fdo#111825]) +5 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-rkl: [SKIP][390] ([fdo#111825]) -> [SKIP][391] ([i915#1845] / [i915#4098]) +3 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: [SKIP][392] ([i915#1845] / [i915#4098]) -> [SKIP][393] ([i915#4103])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: [SKIP][394] ([i915#4098]) -> [SKIP][395] ([i915#3840])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: [SKIP][396] ([i915#3555] / [i915#3840]) -> [SKIP][397] ([i915#1845] / [i915#4098])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_dsc@dsc-with-bpc-formats.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][398] ([fdo#110189] / [i915#3955]) -> [SKIP][399] ([i915#3955])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][400] ([fdo#109285] / [i915#4098]) -> [SKIP][401] ([fdo#109285])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: [SKIP][402] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][403] ([i915#3023]) +17 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][404] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][405] ([fdo#111825]) +2 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][406] ([fdo#111825] / [i915#1825]) -> [SKIP][407] ([i915#1849] / [i915#4098] / [i915#5354]) +29 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][408] ([fdo#111825]) -> [SKIP][409] ([i915#1849] / [i915#4098] / [i915#5354])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: [SKIP][410] ([i915#5439]) -> [SKIP][411] ([i915#1849] / [i915#4098] / [i915#5354])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-rkl: [SKIP][412] ([i915#5354]) -> [SKIP][413] ([i915#9653])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: [SKIP][414] ([i915#3023]) -> [SKIP][415] ([i915#1849] / [i915#4098] / [i915#5354]) +14 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: [SKIP][416] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][417] ([fdo#111825] / [i915#1825]) +30 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: [SKIP][418] ([i915#4098]) -> [SKIP][419] ([i915#3555] / [i915#8228])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_hdr@invalid-hdr.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-swap:
- shard-rkl: [SKIP][420] ([i915#3555] / [i915#8228]) -> [SKIP][421] ([i915#1845] / [i915#4098]) +2 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_hdr@static-swap.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_hdr@static-swap.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][422] ([i915#4816]) -> [SKIP][423] ([i915#4070] / [i915#4816])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: [SKIP][424] ([i915#1845] / [i915#4098]) -> [SKIP][425] ([i915#6301])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_panel_fitting@legacy.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_panel_fitting@legacy.html
* igt@kms_psr@psr2_cursor_mmap_cpu:
- shard-dg2: [SKIP][426] ([i915#9673] / [i915#9732]) -> [SKIP][427] ([i915#9673])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-2/igt@kms_psr@psr2_cursor_mmap_cpu.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_psr@psr2_cursor_mmap_cpu.html
* igt@kms_psr@psr2_cursor_mmap_gtt:
- shard-rkl: [SKIP][428] ([i915#9673]) -> [SKIP][429] ([i915#9673] / [i915#9732]) +6 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_psr@psr2_cursor_mmap_gtt.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_psr@psr2_cursor_mmap_gtt.html
* igt@kms_psr@psr_cursor_render:
- shard-dg2: [SKIP][430] ([i915#9673] / [i915#9736]) -> [SKIP][431] ([i915#9673] / [i915#9732]) +4 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-11/igt@kms_psr@psr_cursor_render.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_psr@psr_cursor_render.html
- shard-rkl: [SKIP][432] ([i915#9673] / [i915#9732]) -> [SKIP][433] ([i915#9673]) +4 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_psr@psr_cursor_render.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_psr@psr_cursor_render.html
* igt@kms_psr@psr_primary_render:
- shard-dg2: [SKIP][434] ([i915#9673] / [i915#9732]) -> [SKIP][435] ([i915#9673] / [i915#9736]) +3 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-1/igt@kms_psr@psr_primary_render.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_psr@psr_primary_render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][436] ([i915#1845] / [i915#4098]) -> [SKIP][437] ([fdo#111615] / [i915#5289]) +1 other test skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: [SKIP][438] ([fdo#111615] / [i915#5289]) -> [SKIP][439] ([i915#1845] / [i915#4098])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: [SKIP][440] ([i915#1845] / [i915#4098]) -> [SKIP][441] ([i915#3555]) +1 other test skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_scaling_modes@scaling-mode-none.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/index.html
[-- Attachment #2: Type: text/html, Size: 110559 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,v2,1/2] tests/intel/xe_create: sanity check all MBZ fields
2023-11-30 17:18 [igt-dev] [PATCH i-g-t v2 1/2] tests/intel/xe_create: sanity check all MBZ fields Matthew Auld
` (5 preceding siblings ...)
2023-12-05 12:55 ` Patchwork
@ 2023-12-05 14:02 ` Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-12-05 14:02 UTC (permalink / raw)
To: Matthew Auld; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100306 bytes --]
== Series Details ==
Series: series starting with [i-g-t,v2,1/2] tests/intel/xe_create: sanity check all MBZ fields
URL : https://patchwork.freedesktop.org/series/127134/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13955_full -> IGTPW_10309_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/index.html
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_10309_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][1] ([i915#8414]) +5 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@drm_fdinfo@busy@vcs0.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][2] ([i915#7742])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][3] -> [FAIL][4] ([i915#7742])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +21 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-15/igt@drm_fdinfo@virtual-busy-all.html
* igt@fbdev@pan:
- shard-rkl: [PASS][7] -> [SKIP][8] ([i915#2582])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@fbdev@pan.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@fbdev@pan.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#3281]) +4 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#3281]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-15/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-7/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][13] -> [INCOMPLETE][14] ([i915#7297])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#6335])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8562])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#8562])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_create@create-ext-set-pat.html
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#8562])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-16/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: NOTRUN -> [FAIL][19] ([i915#6268])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-mtlp: NOTRUN -> [SKIP][20] ([fdo#109314])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@in-flight-immediate:
- shard-mtlp: [PASS][24] -> [ABORT][25] ([i915#9262])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-1/igt@gem_eio@in-flight-immediate.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@gem_eio@in-flight-immediate.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#4771])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#4771])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8555]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#6334])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-glk: NOTRUN -> [FAIL][31] ([i915#9606])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk8/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-deadline:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [PASS][33] -> [FAIL][34] ([i915#2842]) +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-7/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-rkl: NOTRUN -> [FAIL][35] ([i915#2842])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@gem_exec_fair@basic-none-vip@rcs0.html
- shard-glk: NOTRUN -> [FAIL][36] ([i915#2842])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk3/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-rkl: [PASS][37] -> [FAIL][38] ([i915#2842]) +2 other tests fail
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@gem_exec_fair@basic-none@rcs0.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-pace-share:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_exec_fence@submit67.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][42] ([fdo#112283]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +8 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4812]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: [PASS][47] -> [ABORT][48] ([i915#7975] / [i915#8213])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4860])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4860])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-glk: NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#4613])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_lmem_swapping@verify.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#8289])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-5/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4077]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-3/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@basic-wc:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@gem_mmap_gtt@basic-wc.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +15 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4083])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +7 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@gem_mmap_wc@close.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#3282]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3282]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@display:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_pread@display.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#4270]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4270])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4270])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8428]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#8411])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4079])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4079])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4079])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4885])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][72] ([i915#5889])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@gem_spin_batch@spin-all-new.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#3323])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#3323])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4880]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4958])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@gem_userptr_blits@sd-probe.html
* igt@gen3_render_linear_blits:
- shard-rkl: NOTRUN -> [SKIP][79] ([fdo#109289]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@gen3_render_linear_blits.html
* igt@gen7_exec_parse@basic-allocation:
- shard-mtlp: NOTRUN -> [SKIP][80] ([fdo#109289]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@gen7_exec_parse@basic-allocation.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][81] ([fdo#109289]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#2527])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-out:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#2856]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#2856]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [PASS][86] -> [ABORT][87] ([i915#9697])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#7091])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [PASS][89] -> [FAIL][90] ([i915#3591])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-rkl: NOTRUN -> [SKIP][91] ([fdo#109293] / [fdo#109506])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#6621])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#8925])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#8925])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#6188])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][96] ([fdo#109302])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-3/igt@i915_query@query-topology-unsupported.html
* igt@i915_selftest@live@gt_mocs:
- shard-mtlp: [PASS][97] -> [DMESG-WARN][98] ([i915#9715])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-3/igt@i915_selftest@live@gt_mocs.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][99] ([i915#9311])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4212])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
- shard-mtlp: [PASS][101] -> [DMESG-WARN][102] ([i915#2017] / [i915#9157])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-vga-1-linear:
- shard-snb: NOTRUN -> [SKIP][103] ([fdo#109271]) +7 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-snb7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-vga-1-linear.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#8709]) +7 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#8709]) +11 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][106] ([i915#8247]) +3 other tests fail
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6229])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#1769] / [i915#3555])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][109] ([fdo#111614]) +5 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][111] ([fdo#111614])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#5286])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][113] -> [FAIL][114] ([i915#5138]) +1 other test fail
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#3638]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][116] ([fdo#111614] / [i915#3638])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#5190]) +14 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-14/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5190]) +4 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][120] ([fdo#110723])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6187]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][122] ([fdo#111615]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#2705])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#5354] / [i915#6095]) +13 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-gen12-rc-ccs:
- shard-rkl: [PASS][125] -> [SKIP][126] ([i915#4098]) +10 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-gen12-rc-ccs.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#5354]) +91 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
- shard-glk: NOTRUN -> [SKIP][128] ([fdo#109271]) +68 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk2/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#5354] / [i915#6095]) +13 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf-tiled-ccs.html
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#5354] / [i915#6095]) +11 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-10/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf-tiled-ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#5354]) +20 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#5354] / [i915#6095]) +14 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf-tiled-ccs.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#4087]) +3 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@dp-audio:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#7828]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2: NOTRUN -> [SKIP][135] ([fdo#111827]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][136] ([fdo#111827])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#7828]) +7 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#7828])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#7828]) +6 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#7828]) +4 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-16/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#6944]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#3299])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#7118])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3555] / [i915#8814]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][145] ([fdo#109279] / [i915#3359])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#3359])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#3555])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#3555]) +5 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#3555]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-14/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3359])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#3555]) +4 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][152] ([fdo#109274] / [i915#5354]) +7 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3546]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-rkl: [PASS][155] -> [SKIP][156] ([i915#1845] / [i915#4098]) +13 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#1845] / [i915#4098]) +21 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][158] ([fdo#111825]) +5 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][159] -> [FAIL][160] ([i915#2346])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][161] ([i915#2346])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-glk: [PASS][162] -> [INCOMPLETE][163] ([i915#9799])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#4098])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#8588])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#8588])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#8588])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#3804])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#8812])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3840] / [i915#4098]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840] / [i915#4098])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#3840] / [i915#9053])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: [PASS][174] -> [FAIL][175] ([i915#4767])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk3/igt@kms_fbcon_fbt@fbc-suspend.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk8/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#1839])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3637])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-snb: NOTRUN -> [SKIP][178] ([fdo#109271] / [fdo#111767]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-snb4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-dg2: NOTRUN -> [SKIP][179] ([fdo#109274] / [fdo#111767])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2: NOTRUN -> [SKIP][180] ([fdo#109274]) +5 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3637] / [i915#4098]) +5 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#8381])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_flip@flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8381])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#2672]) +3 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#2672]) +4 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#2587] / [i915#2672]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2672]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: [PASS][188] -> [SKIP][189] ([i915#1849] / [i915#4098] / [i915#5354]) +8 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#8708]) +22 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#1825]) +16 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][192] ([fdo#109280]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][193] ([fdo#111825] / [i915#1825]) +20 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#5460])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#8708]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#3458]) +16 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#3458]) +3 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][198] ([fdo#111825]) +12 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#9653])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#3023]) +9 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#1849] / [i915#4098] / [i915#5354]) +10 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#8708]) +2 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][203] ([fdo#110189])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#8228])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_hdr@bpc-switch.html
* igt@kms_invalid_mode@int-max-clock:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#4098]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_invalid_mode@int-max-clock.html
* igt@kms_lease@lease-invalid-plane:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#4098]) +16 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_lease@lease-invalid-plane.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#4816])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#4816])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#6301])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@plane-position-covered:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#4098] / [i915#8825]) +2 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_plane@plane-position-covered.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][211] ([i915#4573]) +1 other test fail
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][212] ([i915#8292])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][213] ([i915#8292])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#9423]) +3 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#9423]) +5 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#9423]) +7 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#5176] / [i915#9423]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#8152]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#6953] / [i915#8152])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#5235]) +19 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#5235]) +7 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#4098] / [i915#6953] / [i915#8152]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#5235]) +6 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#5235])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#5235]) +5 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#3546])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-4/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#5354])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-15/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#9685])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-rkl: [PASS][229] -> [SKIP][230] ([i915#9293])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_pm_dc@dc5-dpms-negative.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#9685]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#9519])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg2: [PASS][233] -> [FAIL][234] ([i915#8717])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-7/igt@kms_pm_rpm@i2c.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#9519]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][236] -> [SKIP][237] ([i915#9519]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#6524])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#9683])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#9683])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][241] ([fdo#111068] / [i915#9683])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][242] ([fdo#109642] / [fdo#111068] / [i915#9683])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#9683]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][244] ([fdo#111068] / [i915#9683]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@pr_cursor_render:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#9688])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_psr@pr_cursor_render.html
* igt@kms_psr@pr_primary_mmap_cpu:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#9673] / [i915#9732]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-13/igt@kms_psr@pr_primary_mmap_cpu.html
* igt@kms_psr@psr2_dpms:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#9673] / [i915#9732]) +12 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@kms_psr@psr2_dpms.html
* igt@kms_psr@psr2_primary_mmap_cpu:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#9673])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-8/igt@kms_psr@psr2_primary_mmap_cpu.html
* igt@kms_psr@psr_cursor_plane_move:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#9673]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_psr@psr_cursor_plane_move.html
* igt@kms_psr@psr_primary_mmap_gtt:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#9673] / [i915#9732]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_psr@psr_primary_mmap_gtt.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#4235])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#4098])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_setmode@basic-clone-single-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8809])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg1: NOTRUN -> [FAIL][254] ([IGT#2] / [i915#6493])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#8623])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#8623])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1:
- shard-snb: [PASS][257] -> [FAIL][258] ([i915#9196])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [PASS][259] -> [FAIL][260] ([i915#9196])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4:
- shard-dg1: [PASS][261] -> [FAIL][262] ([i915#9196])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-16/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#2437])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#2437])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-4/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#2436])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#7387])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: [PASS][267] -> [FAIL][268] ([i915#4349])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#8516])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][270] ([i915#9351])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_udl:
- shard-mtlp: NOTRUN -> [SKIP][271] ([fdo#109291])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-8/igt@prime_udl.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#3708] / [i915#4077]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][273] ([fdo#109295] / [i915#3708])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@prime_vgem@fence-read-hang.html
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#3708])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@prime_vgem@fence-read-hang.html
* igt@v3d/v3d_perfmon@create-perfmon-0:
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#2575]) +3 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-19/igt@v3d/v3d_perfmon@create-perfmon-0.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-rkl: NOTRUN -> [SKIP][276] ([fdo#109315]) +8 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#2575]) +4 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#2575]) +12 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#7711]) +11 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#7711]) +2 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-7/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
* igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#2575])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-4/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#7711]) +4 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#7711]) +2 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-14/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@fbdev@nullptr:
- shard-rkl: [SKIP][284] ([i915#2582]) -> [PASS][285] +1 other test pass
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@fbdev@nullptr.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@fbdev@nullptr.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][286] ([i915#5784]) -> [PASS][287] +1 other test pass
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-15/igt@gem_eio@unwedge-stress.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][288] ([i915#2842]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-rkl: [FAIL][290] ([i915#2842]) -> [PASS][291] +1 other test pass
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][292] ([i915#2842]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-9/igt@gem_exec_fair@basic-pace@rcs0.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][294] ([i915#5493]) -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_wc@set-cache-level:
- shard-rkl: [SKIP][296] ([i915#1850]) -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@gem_mmap_wc@set-cache-level.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@gem_mmap_wc@set-cache-level.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [WARN][298] ([i915#7356]) -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [FAIL][300] ([i915#3591]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_selftest@live@gem_contexts:
- shard-mtlp: [DMESG-FAIL][302] ([i915#9780]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-3/igt@i915_selftest@live@gem_contexts.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@i915_selftest@live@gem_contexts.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][304] ([i915#5138]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [FAIL][306] ([i915#3743]) -> [PASS][307] +1 other test pass
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_color@ctm-green-to-red@pipe-b:
- shard-rkl: [SKIP][308] ([i915#4098]) -> [PASS][309] +12 other tests pass
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_color@ctm-green-to-red@pipe-b.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_color@ctm-green-to-red@pipe-b.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
- shard-rkl: [SKIP][310] ([i915#1845] / [i915#4098]) -> [PASS][311] +18 other tests pass
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
* igt@kms_cursor_legacy@single-move@all-pipes:
- shard-mtlp: [DMESG-WARN][312] ([i915#2017]) -> [PASS][313]
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-2/igt@kms_cursor_legacy@single-move@all-pipes.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [FAIL][314] ([i915#6880]) -> [PASS][315] +1 other test pass
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][316] ([i915#1849] / [i915#4098] / [i915#5354]) -> [PASS][317] +14 other tests pass
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_plane@planar-pixel-format-settings:
- shard-rkl: [SKIP][318] ([i915#9581]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_plane@planar-pixel-format-settings.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_plane@planar-pixel-format-settings.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][320] ([i915#9519]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][322] ([i915#9519]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_properties@plane-properties-atomic:
- shard-rkl: [SKIP][324] ([i915#1849] / [i915#4098]) -> [PASS][325] +2 other tests pass
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_properties@plane-properties-atomic.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_properties@plane-properties-atomic.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1:
- shard-snb: [FAIL][326] ([i915#9196]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html
* igt@perf_pmu@multi-client@vcs0:
- shard-mtlp: [FAIL][328] ([i915#4349]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-5/igt@perf_pmu@multi-client@vcs0.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-3/igt@perf_pmu@multi-client@vcs0.html
* igt@perf_pmu@render-node-busy-idle@vcs1:
- shard-dg1: [FAIL][330] ([i915#4349]) -> [PASS][331] +2 other tests pass
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-19/igt@perf_pmu@render-node-busy-idle@vcs1.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-17/igt@perf_pmu@render-node-busy-idle@vcs1.html
* igt@prime_vgem@fence-wait@vcs1:
- shard-mtlp: [ABORT][332] -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@prime_vgem@fence-wait@vcs1.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@prime_vgem@fence-wait@vcs1.html
* igt@prime_vgem@fence-wait@vecs0:
- shard-mtlp: [DMESG-WARN][334] ([i915#8875]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@prime_vgem@fence-wait@vecs0.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-1/igt@prime_vgem@fence-wait@vecs0.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-tglu: [WARN][336] ([i915#2681]) -> [FAIL][337] ([i915#2681] / [i915#3591])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: [FAIL][338] ([i915#8247]) -> [DMESG-FAIL][339] ([i915#8561]) +3 other tests dmesg-fail
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-mtlp-8/igt@kms_async_flips@crc@pipe-d-edp-1.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-mtlp-5/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][340] ([i915#1845] / [i915#4098]) -> [SKIP][341] ([i915#5286]) +7 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][342] ([i915#5286]) -> [SKIP][343] ([i915#1845] / [i915#4098]) +4 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][344] ([fdo#111614] / [i915#3638]) -> [SKIP][345] ([i915#1845] / [i915#4098]) +7 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: [SKIP][346] ([i915#1845] / [i915#4098]) -> [SKIP][347] ([fdo#111614] / [i915#3638]) +1 other test skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-rkl: [SKIP][348] ([fdo#110723]) -> [SKIP][349] ([i915#1845] / [i915#4098]) +4 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][350] ([i915#1845] / [i915#4098]) -> [SKIP][351] ([fdo#110723]) +7 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-rkl: [SKIP][352] ([i915#1845] / [i915#4098]) -> [SKIP][353] ([fdo#111615])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_big_fb@yf-tiled-addfb.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_ccs@pipe-a-random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-rkl: [SKIP][354] ([i915#5354] / [i915#6095]) -> [SKIP][355] ([i915#4098]) +19 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_ccs@pipe-a-random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_ccs@pipe-a-random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][356] ([i915#4098]) -> [SKIP][357] ([i915#5354] / [i915#6095]) +22 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [SKIP][358] ([i915#5354]) -> [SKIP][359] ([i915#4098]) +17 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-rkl: [SKIP][360] ([i915#4098]) -> [SKIP][361] ([i915#5354]) +25 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: [SKIP][362] ([i915#7118]) -> [SKIP][363] ([i915#1845] / [i915#4098])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: [SKIP][364] ([i915#3116]) -> [SKIP][365] ([i915#1845] / [i915#4098])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][366] ([i915#1845] / [i915#4098]) -> [SKIP][367] ([i915#3116])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_content_protection@dp-mst-type-1.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: [SKIP][368] ([i915#9424]) -> [SKIP][369] ([i915#8063])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-7/igt@kms_content_protection@mei-interface.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_content_protection@mei-interface.html
- shard-dg1: [SKIP][370] ([i915#9424]) -> [SKIP][371] ([i915#9433])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg1-18/igt@kms_content_protection@mei-interface.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg1-16/igt@kms_content_protection@mei-interface.html
- shard-tglu: [SKIP][372] ([i915#9424]) -> [SKIP][373] ([i915#8063])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-tglu-3/igt@kms_content_protection@mei-interface.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-tglu-3/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][374] ([i915#1845] / [i915#4098]) -> [SKIP][375] ([i915#7118]) +1 other test skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_content_protection@srm.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][376] ([i915#7118] / [i915#7162]) -> [SKIP][377] ([i915#7118])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-11/igt@kms_content_protection@type1.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: [SKIP][378] ([i915#1845] / [i915#4098]) -> [SKIP][379] ([fdo#109279] / [i915#3359])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: [SKIP][380] ([i915#3359]) -> [SKIP][381] ([i915#1845] / [i915#4098])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][382] ([i915#1845] / [i915#4098]) -> [SKIP][383] ([i915#3359])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x170.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: [SKIP][384] ([i915#3555]) -> [SKIP][385] ([i915#1845] / [i915#4098]) +2 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-rkl: [SKIP][386] ([fdo#111767] / [fdo#111825]) -> [SKIP][387] ([i915#1845] / [i915#4098]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-rkl: [SKIP][388] ([i915#1845] / [i915#4098]) -> [SKIP][389] ([fdo#111825]) +5 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-rkl: [SKIP][390] ([fdo#111825]) -> [SKIP][391] ([i915#1845] / [i915#4098]) +3 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: [SKIP][392] ([i915#1845] / [i915#4098]) -> [SKIP][393] ([i915#4103])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: [SKIP][394] ([i915#4098]) -> [SKIP][395] ([i915#3840])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: [SKIP][396] ([i915#3555] / [i915#3840]) -> [SKIP][397] ([i915#1845] / [i915#4098])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_dsc@dsc-with-bpc-formats.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][398] ([fdo#110189] / [i915#3955]) -> [SKIP][399] ([i915#3955])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][400] ([fdo#109285] / [i915#4098]) -> [SKIP][401] ([fdo#109285])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: [SKIP][402] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][403] ([i915#3023]) +17 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][404] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][405] ([fdo#111825]) +2 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][406] ([fdo#111825] / [i915#1825]) -> [SKIP][407] ([i915#1849] / [i915#4098] / [i915#5354]) +29 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][408] ([fdo#111825]) -> [SKIP][409] ([i915#1849] / [i915#4098] / [i915#5354])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: [SKIP][410] ([i915#5439]) -> [SKIP][411] ([i915#1849] / [i915#4098] / [i915#5354])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-rkl: [SKIP][412] ([i915#5354]) -> [SKIP][413] ([i915#9653])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: [SKIP][414] ([i915#3023]) -> [SKIP][415] ([i915#1849] / [i915#4098] / [i915#5354]) +14 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: [SKIP][416] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][417] ([fdo#111825] / [i915#1825]) +30 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: [SKIP][418] ([i915#4098]) -> [SKIP][419] ([i915#3555] / [i915#8228])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_hdr@invalid-hdr.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-2/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-swap:
- shard-rkl: [SKIP][420] ([i915#3555] / [i915#8228]) -> [SKIP][421] ([i915#1845] / [i915#4098]) +2 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-2/igt@kms_hdr@static-swap.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_hdr@static-swap.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][422] ([i915#4816]) -> [SKIP][423] ([i915#4070] / [i915#4816])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: [SKIP][424] ([i915#1845] / [i915#4098]) -> [SKIP][425] ([i915#6301])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_panel_fitting@legacy.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_panel_fitting@legacy.html
* igt@kms_psr@psr2_cursor_mmap_cpu:
- shard-dg2: [SKIP][426] ([i915#9673] / [i915#9732]) -> [SKIP][427] ([i915#9673])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-2/igt@kms_psr@psr2_cursor_mmap_cpu.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_psr@psr2_cursor_mmap_cpu.html
* igt@kms_psr@psr2_cursor_mmap_gtt:
- shard-rkl: [SKIP][428] ([i915#9673]) -> [SKIP][429] ([i915#9673] / [i915#9732]) +6 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_psr@psr2_cursor_mmap_gtt.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_psr@psr2_cursor_mmap_gtt.html
* igt@kms_psr@psr_cursor_render:
- shard-dg2: [SKIP][430] ([i915#9673] / [i915#9736]) -> [SKIP][431] ([i915#9673] / [i915#9732]) +4 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-11/igt@kms_psr@psr_cursor_render.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-10/igt@kms_psr@psr_cursor_render.html
- shard-rkl: [SKIP][432] ([i915#9673] / [i915#9732]) -> [SKIP][433] ([i915#9673]) +4 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_psr@psr_cursor_render.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_psr@psr_cursor_render.html
* igt@kms_psr@psr_primary_render:
- shard-dg2: [SKIP][434] ([i915#9673] / [i915#9732]) -> [SKIP][435] ([i915#9673] / [i915#9736]) +3 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-dg2-1/igt@kms_psr@psr_primary_render.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-dg2-11/igt@kms_psr@psr_primary_render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][436] ([i915#1845] / [i915#4098]) -> [SKIP][437] ([fdo#111615] / [i915#5289]) +1 other test skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: [SKIP][438] ([fdo#111615] / [i915#5289]) -> [SKIP][439] ([i915#1845] / [i915#4098])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: [SKIP][440] ([i915#1845] / [i915#4098]) -> [SKIP][441] ([i915#3555]) +1 other test skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13955/shard-rkl-1/igt@kms_scaling_modes@scaling-mode-none.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10309/index.html
[-- Attachment #2: Type: text/html, Size: 111860 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v2 1/2] tests/intel/xe_create: sanity check all MBZ fields
2023-12-01 14:58 ` [igt-dev] [PATCH i-g-t v2 1/2] " Kamil Konieczny
@ 2023-12-08 13:33 ` Francois Dugast
0 siblings, 0 replies; 11+ messages in thread
From: Francois Dugast @ 2023-12-08 13:33 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Matthew Auld, Pallavi Mishra
Hi Matt,
On Fri, Dec 01, 2023 at 03:58:15PM +0100, Kamil Konieczny wrote:
> Hi Matthew,
> On 2023-11-30 at 17:18:49 +0000, Matthew Auld wrote:
> > Explicitly check that all MBZ (must-be-zero) fields are currently
> > rejected, including the currently unused extensions.
> >
> > v2: (Kamil)
> > - Various improvements
> >
> > Signed-off-by: Matthew Auld <matthew.auld@intel.com>
> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > Cc: Pallavi Mishra <pallavi.mishra@intel.com>
> > Cc: Francois Dugast <francois.dugast@intel.com>
>
> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>
> Please wait with merge or talk to Francios as he prepared xe-uapi change.
>
> Regards,
> Kamil
Thanks for doing this, this is great and we should do this for all
structs. The test must be updated now that the pad is __u16 pad[3]
but after this is done, no reason to hold the merge from my side.
Francois
>
> > ---
> > tests/intel/xe_create.c | 59 +++++++++++++++++++++++++++++++++++++----
> > 1 file changed, 54 insertions(+), 5 deletions(-)
> >
> > diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c
> > index bb55a15e1..986b078dd 100644
> > --- a/tests/intel/xe_create.c
> > +++ b/tests/intel/xe_create.c
> > @@ -18,6 +18,18 @@
> >
> > #define PAGE_SIZE 0x1000
> >
> > +static int __ioctl_create(int fd, struct drm_xe_gem_create *create)
> > +{
> > + int ret = 0;
> > +
> > + if (igt_ioctl(fd, DRM_IOCTL_XE_GEM_CREATE, create)) {
> > + ret = -errno;
> > + errno = 0;
> > + }
> > +
> > + return ret;
> > +}
> > +
> > static int __create_bo(int fd, uint32_t vm, uint64_t size, uint32_t flags,
> > uint32_t *handlep)
> > {
> > @@ -27,14 +39,11 @@ static int __create_bo(int fd, uint32_t vm, uint64_t size, uint32_t flags,
> > .flags = flags,
> > .cpu_caching = __xe_default_cpu_caching_from_flags(fd, flags),
> > };
> > - int ret = 0;
> > + int ret;
> >
> > igt_assert(handlep);
> >
> > - if (igt_ioctl(fd, DRM_IOCTL_XE_GEM_CREATE, &create)) {
> > - ret = -errno;
> > - errno = 0;
> > - }
> > + ret = __ioctl_create(fd, &create);
> > *handlep = create.handle;
> >
> > return ret;
> > @@ -88,6 +97,43 @@ static void create_invalid_size(int fd)
> > xe_vm_destroy(fd, vm);
> > }
> >
> > +/**
> > + * SUBTEST: create-invalid-mbz
> > + * Functionality: ioctl
> > + * Test category: negative test
> > + * Description: Verifies xe bo create returns expected error code on all MBZ fields.
> > + */
> > +static void create_invalid_mbz(int fd)
> > +{
> > + struct drm_xe_gem_create create = {
> > + .size = PAGE_SIZE,
> > + .flags = system_memory(fd),
> > + .cpu_caching = DRM_XE_GEM_CPU_CACHING_WB,
> > + };
> > + int i;
> > +
> > + /* Make sure the baseline passes */
> > + igt_assert_eq(__ioctl_create(fd, &create), 0);
> > + gem_close(fd, create.handle);
> > + create.handle = 0;
> > +
> > + /* No supported extensions yet */
> > + create.extensions = -1;
> > + igt_assert_eq(__ioctl_create(fd, &create), -EINVAL);
> > + create.extensions = 0;
> > +
> > + /* Make sure KMD rejects non-zero padding/reserved fields */
> > + create.pad = -1;
> > + igt_assert_eq(__ioctl_create(fd, &create), -EINVAL);
> > + create.pad = 0;
> > +
> > + for (i = 0; i < ARRAY_SIZE(create.reserved); i++) {
> > + create.reserved[i] = -1;
> > + igt_assert_eq(__ioctl_create(fd, &create), -EINVAL);
> > + create.reserved[i] = 0;
> > + }
> > +}
> > +
> > enum exec_queue_destroy {
> > NOLEAK,
> > LEAK
> > @@ -222,6 +268,9 @@ igt_main
> > igt_fixture
> > xe = drm_open_driver(DRIVER_XE);
> >
> > + igt_subtest("create-invalid-mbz")
> > + create_invalid_mbz(xe);
> > +
> > igt_subtest("create-invalid-size") {
> > create_invalid_size(xe);
> > }
> > --
> > 2.43.0
> >
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-12-08 13:33 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-30 17:18 [igt-dev] [PATCH i-g-t v2 1/2] tests/intel/xe_create: sanity check all MBZ fields Matthew Auld
2023-11-30 17:18 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/intel-ci/xe-fast-feedback: add create-invalid-mbz Matthew Auld
2023-11-30 18:15 ` Kamil Konieczny
2023-11-30 18:39 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/2] tests/intel/xe_create: sanity check all MBZ fields Patchwork
2023-11-30 21:55 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-12-01 14:58 ` [igt-dev] [PATCH i-g-t v2 1/2] " Kamil Konieczny
2023-12-08 13:33 ` Francois Dugast
2023-12-01 20:31 ` [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,v2,1/2] " Patchwork
2023-12-04 10:17 ` Kamil Konieczny
2023-12-05 12:55 ` Patchwork
2023-12-05 14:02 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox