* [Intel-gfx] [PATCH] drm/i915/dp_mst: Disable DSC on ICL+ MST outputs
@ 2023-11-02 11:59 Imre Deak
2023-11-02 14:06 ` Ville Syrjälä
` (11 more replies)
0 siblings, 12 replies; 15+ messages in thread
From: Imre Deak @ 2023-11-02 11:59 UTC (permalink / raw)
To: intel-gfx
Enabling DSC on ICL MST outputs is broken leading to FIFO pipe /
transcoder underruns and blank screen. On TGL+ platforms MST/DSC works -
after fixing the known issues in [1] - however to make this work on ICL
requires more work.
So far DSC on MST probably didn't get enabled for users - due to an issue
fixed by [2] - but after fixing that, DSC could get enabled, leading to a
blank screen in ICL/MST configurations which do work atm. To prevent
this disable MST/DSC on ICL for now.
[1] https://lore.kernel.org/all/20231030155843.2251023-1-imre.deak@intel.com
[2] https://lore.kernel.org/all/20231030155843.2251023-31-imre.deak@intel.com
Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
drivers/gpu/drm/i915/display/intel_dp_mst.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
index 82f425ef15953..2cd3bccc0e650 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
@@ -43,6 +43,7 @@
#include "intel_dpio_phy.h"
#include "intel_hdcp.h"
#include "intel_hotplug.h"
+#include "intel_vdsc.h"
#include "skl_scaler.h"
static int intel_dp_mst_check_constraints(struct drm_i915_private *i915, int bpp,
@@ -297,6 +298,14 @@ static int intel_dp_mst_update_slots(struct intel_encoder *encoder,
return 0;
}
+static bool
+intel_dp_mst_dsc_source_support(const struct intel_crtc_state *crtc_state)
+{
+ struct drm_i915_private *i915 = to_i915(crtc_state->uapi.crtc->dev);
+
+ return DISPLAY_VER(i915) > 11 && intel_dsc_source_support(crtc_state);
+}
+
static bool
intel_dp_mst_compute_config_limits(struct intel_dp *intel_dp,
struct intel_crtc_state *crtc_state,
@@ -375,6 +384,9 @@ static int intel_dp_mst_compute_config(struct intel_encoder *encoder,
str_yes_no(ret),
str_yes_no(intel_dp->force_dsc_en));
+ if (!intel_dp_mst_dsc_source_support(pipe_config))
+ return -EINVAL;
+
if (!intel_dp_mst_compute_config_limits(intel_dp,
pipe_config,
true,
--
2.39.2
^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915/dp_mst: Disable DSC on ICL+ MST outputs
2023-11-02 11:59 [Intel-gfx] [PATCH] drm/i915/dp_mst: Disable DSC on ICL+ MST outputs Imre Deak
@ 2023-11-02 14:06 ` Ville Syrjälä
2023-11-02 19:44 ` [Intel-gfx] [PATCH v2] " Imre Deak
` (10 subsequent siblings)
11 siblings, 0 replies; 15+ messages in thread
From: Ville Syrjälä @ 2023-11-02 14:06 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-gfx
On Thu, Nov 02, 2023 at 01:59:35PM +0200, Imre Deak wrote:
> Enabling DSC on ICL MST outputs is broken leading to FIFO pipe /
> transcoder underruns and blank screen. On TGL+ platforms MST/DSC works -
> after fixing the known issues in [1] - however to make this work on ICL
> requires more work.
>
> So far DSC on MST probably didn't get enabled for users - due to an issue
> fixed by [2] - but after fixing that, DSC could get enabled, leading to a
> blank screen in ICL/MST configurations which do work atm. To prevent
> this disable MST/DSC on ICL for now.
>
> [1] https://lore.kernel.org/all/20231030155843.2251023-1-imre.deak@intel.com
> [2] https://lore.kernel.org/all/20231030155843.2251023-31-imre.deak@intel.com
>
> Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_dp_mst.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> index 82f425ef15953..2cd3bccc0e650 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> @@ -43,6 +43,7 @@
> #include "intel_dpio_phy.h"
> #include "intel_hdcp.h"
> #include "intel_hotplug.h"
> +#include "intel_vdsc.h"
> #include "skl_scaler.h"
>
> static int intel_dp_mst_check_constraints(struct drm_i915_private *i915, int bpp,
> @@ -297,6 +298,14 @@ static int intel_dp_mst_update_slots(struct intel_encoder *encoder,
> return 0;
> }
>
> +static bool
> +intel_dp_mst_dsc_source_support(const struct intel_crtc_state *crtc_state)
> +{
> + struct drm_i915_private *i915 = to_i915(crtc_state->uapi.crtc->dev);
> +
> + return DISPLAY_VER(i915) > 11 && intel_dsc_source_support(crtc_state);
We typically say >=12 not >11. Also please include a small comment to
explaing why icl is excluded so people don't have to wonder what's going
on here.
Apart from that
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> +}
> +
> static bool
> intel_dp_mst_compute_config_limits(struct intel_dp *intel_dp,
> struct intel_crtc_state *crtc_state,
> @@ -375,6 +384,9 @@ static int intel_dp_mst_compute_config(struct intel_encoder *encoder,
> str_yes_no(ret),
> str_yes_no(intel_dp->force_dsc_en));
>
> + if (!intel_dp_mst_dsc_source_support(pipe_config))
> + return -EINVAL;
> +
> if (!intel_dp_mst_compute_config_limits(intel_dp,
> pipe_config,
> true,
> --
> 2.39.2
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 15+ messages in thread
* [Intel-gfx] [PATCH v2] drm/i915/dp_mst: Disable DSC on ICL+ MST outputs
2023-11-02 11:59 [Intel-gfx] [PATCH] drm/i915/dp_mst: Disable DSC on ICL+ MST outputs Imre Deak
2023-11-02 14:06 ` Ville Syrjälä
@ 2023-11-02 19:44 ` Imre Deak
2023-11-03 7:42 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev2) Patchwork
` (9 subsequent siblings)
11 siblings, 0 replies; 15+ messages in thread
From: Imre Deak @ 2023-11-02 19:44 UTC (permalink / raw)
To: intel-gfx
Enabling DSC on ICL MST outputs is broken leading to FIFO pipe /
transcoder underruns and blank screen. On TGL+ platforms MST/DSC works -
after fixing the known issues in [1] - however to make this work on ICL
requires more work.
So far DSC on MST probably didn't get enabled for users - due to an issue
fixed by [2] - but after fixing that, DSC could get enabled, leading to a
blank screen in ICL/MST configurations which do work atm. To prevent
this disable MST/DSC on ICL for now.
[1] https://lore.kernel.org/all/20231030155843.2251023-1-imre.deak@intel.com
[2] https://lore.kernel.org/all/20231030155843.2251023-31-imre.deak@intel.com
Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
drivers/gpu/drm/i915/display/intel_dp_mst.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
index 82f425ef15953..60fe10f80fe45 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
@@ -43,6 +43,7 @@
#include "intel_dpio_phy.h"
#include "intel_hdcp.h"
#include "intel_hotplug.h"
+#include "intel_vdsc.h"
#include "skl_scaler.h"
static int intel_dp_mst_check_constraints(struct drm_i915_private *i915, int bpp,
@@ -297,6 +298,18 @@ static int intel_dp_mst_update_slots(struct intel_encoder *encoder,
return 0;
}
+static bool
+intel_dp_mst_dsc_source_support(const struct intel_crtc_state *crtc_state)
+{
+ struct drm_i915_private *i915 = to_i915(crtc_state->uapi.crtc->dev);
+
+ /*
+ * FIXME: Enabling DSC on ICL results in blank screen and FIFO pipe /
+ * transcoder underruns, re-enable DSC after fixing this issue.
+ */
+ return DISPLAY_VER(i915) >= 12 && intel_dsc_source_support(crtc_state);
+}
+
static bool
intel_dp_mst_compute_config_limits(struct intel_dp *intel_dp,
struct intel_crtc_state *crtc_state,
@@ -375,6 +388,9 @@ static int intel_dp_mst_compute_config(struct intel_encoder *encoder,
str_yes_no(ret),
str_yes_no(intel_dp->force_dsc_en));
+ if (!intel_dp_mst_dsc_source_support(pipe_config))
+ return -EINVAL;
+
if (!intel_dp_mst_compute_config_limits(intel_dp,
pipe_config,
true,
--
2.39.2
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev2)
2023-11-02 11:59 [Intel-gfx] [PATCH] drm/i915/dp_mst: Disable DSC on ICL+ MST outputs Imre Deak
2023-11-02 14:06 ` Ville Syrjälä
2023-11-02 19:44 ` [Intel-gfx] [PATCH v2] " Imre Deak
@ 2023-11-03 7:42 ` Patchwork
2023-11-03 8:01 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
` (8 subsequent siblings)
11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-03 7:42 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev2)
URL : https://patchwork.freedesktop.org/series/125895/
State : warning
== Summary ==
Error: dim checkpatch failed
4e8024b4a423 drm/i915/dp_mst: Disable DSC on ICL+ MST outputs
-:19: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#19:
[1] https://lore.kernel.org/all/20231030155843.2251023-1-imre.deak@intel.com
total: 0 errors, 1 warnings, 0 checks, 34 lines checked
^ permalink raw reply [flat|nested] 15+ messages in thread
* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev2)
2023-11-02 11:59 [Intel-gfx] [PATCH] drm/i915/dp_mst: Disable DSC on ICL+ MST outputs Imre Deak
` (2 preceding siblings ...)
2023-11-03 7:42 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev2) Patchwork
@ 2023-11-03 8:01 ` Patchwork
2023-11-03 21:09 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3) Patchwork
` (7 subsequent siblings)
11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-03 8:01 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 17465 bytes --]
== Series Details ==
Series: drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev2)
URL : https://patchwork.freedesktop.org/series/125895/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13833 -> Patchwork_125895v2
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_125895v2 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_125895v2, please notify your bug team (lgci.bug.filing@intel.com) 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/Patchwork_125895v2/index.html
Participating hosts (37 -> 37)
------------------------------
Additional (4): bat-dg2-8 bat-kbl-2 bat-dg2-9 fi-bsw-n3050
Missing (4): fi-kbl-soraka bat-adls-5 fi-snb-2520m fi-pnv-d510
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_125895v2:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@gem_contexts:
- fi-hsw-4770: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/fi-hsw-4770/igt@i915_selftest@live@gem_contexts.html
Known issues
------------
Here are the changes found in Patchwork_125895v2 that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- fi-bsw-n3050: NOTRUN -> [FAIL][2] ([i915#8293])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/fi-bsw-n3050/boot.html
#### Possible fixes ####
* boot:
- fi-hsw-4770: [FAIL][3] ([i915#8293]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/fi-hsw-4770/boot.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/fi-hsw-4770/boot.html
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- bat-kbl-2: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1849])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-kbl-2/igt@fbdev@info.html
* igt@gem_exec_suspend@basic-s0@smem:
- bat-jsl-3: [PASS][6] -> [INCOMPLETE][7] ([i915#9275])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-kbl-2: NOTRUN -> [SKIP][8] ([fdo#109271]) +39 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-dg2-9: NOTRUN -> [SKIP][9] ([i915#4083])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-9/igt@gem_mmap@basic.html
- bat-dg2-8: NOTRUN -> [SKIP][10] ([i915#4083])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][11] ([i915#4077]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-9/igt@gem_mmap_gtt@basic.html
- bat-dg2-8: NOTRUN -> [SKIP][12] ([i915#4077]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-9: NOTRUN -> [SKIP][13] ([i915#4079]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-9/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg2-8: NOTRUN -> [SKIP][14] ([i915#4079]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@gem_tiled_pread_basic.html
* igt@i915_module_load@reload:
- fi-apl-guc: [PASS][15] -> [DMESG-WARN][16] ([i915#180] / [i915#1982] / [i915#7634] / [i915#8585])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/fi-apl-guc/igt@i915_module_load@reload.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/fi-apl-guc/igt@i915_module_load@reload.html
* igt@i915_pm_rpm@module-reload:
- fi-apl-guc: [PASS][17] -> [DMESG-WARN][18] ([i915#180] / [i915#7634] / [i915#8585]) +2 other tests dmesg-warn
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/fi-apl-guc/igt@i915_pm_rpm@module-reload.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/fi-apl-guc/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-9: NOTRUN -> [SKIP][19] ([i915#6621])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-9/igt@i915_pm_rps@basic-api.html
- bat-dg2-8: NOTRUN -> [SKIP][20] ([i915#6621])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@migrate:
- bat-dg2-11: [PASS][21] -> [DMESG-FAIL][22] ([i915#7699])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/bat-dg2-11/igt@i915_selftest@live@migrate.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-11/igt@i915_selftest@live@migrate.html
* igt@i915_selftest@live@reset:
- fi-apl-guc: [PASS][23] -> [DMESG-WARN][24] ([i915#7634]) +36 other tests dmesg-warn
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/fi-apl-guc/igt@i915_selftest@live@reset.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/fi-apl-guc/igt@i915_selftest@live@reset.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-jsl-3: [PASS][25] -> [FAIL][26] ([fdo#103375])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
- bat-dg2-8: NOTRUN -> [SKIP][27] ([i915#6645])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-4-tiled:
- fi-apl-guc: [PASS][28] -> [DMESG-WARN][29] ([i915#8585]) +40 other tests dmesg-warn
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/fi-apl-guc/igt@kms_addfb_basic@addfb25-4-tiled.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/fi-apl-guc/igt@kms_addfb_basic@addfb25-4-tiled.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][30] ([i915#5190])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- fi-hsw-4770: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#5190])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][32] ([i915#5190])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][33] ([i915#4215] / [i915#5190])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][34] ([i915#4215] / [i915#5190])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][35] ([i915#4212]) +6 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
- bat-dg2-8: NOTRUN -> [SKIP][36] ([i915#4212]) +6 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-9: NOTRUN -> [SKIP][37] ([i915#4212] / [i915#5608])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-9/igt@kms_addfb_basic@tile-pitch-mismatch.html
- bat-dg2-8: NOTRUN -> [SKIP][38] ([i915#4212] / [i915#5608])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][39] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][40] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- fi-apl-guc: [PASS][41] -> [DMESG-WARN][42] ([i915#8585] / [i915#8703]) +1 other test dmesg-warn
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/fi-apl-guc/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/fi-apl-guc/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-dpms@c-dp1:
- fi-apl-guc: [PASS][43] -> [DMESG-WARN][44] ([i915#180] / [i915#8585] / [i915#8703]) +34 other tests dmesg-warn
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/fi-apl-guc/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/fi-apl-guc/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1:
- fi-apl-guc: [PASS][45] -> [DMESG-WARN][46] ([i915#180] / [i915#1982] / [i915#8585] / [i915#8703])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/fi-apl-guc/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/fi-apl-guc/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-9: NOTRUN -> [SKIP][47] ([fdo#109285])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg2-8: NOTRUN -> [SKIP][48] ([fdo#109285])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-9: NOTRUN -> [SKIP][49] ([i915#5274])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-8: NOTRUN -> [SKIP][50] ([i915#5274])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1:
- fi-hsw-4770: NOTRUN -> [SKIP][51] ([fdo#109271]) +12 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/fi-hsw-4770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
- bat-rplp-1: [PASS][52] -> [ABORT][53] ([i915#8668])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
* igt@kms_psr@cursor_plane_move:
- bat-dg2-8: NOTRUN -> [SKIP][54] ([i915#1072]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@kms_psr@cursor_plane_move.html
* igt@kms_psr@sprite_plane_onoff:
- bat-dg2-9: NOTRUN -> [SKIP][55] ([i915#1072]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-9/igt@kms_psr@sprite_plane_onoff.html
- fi-hsw-4770: NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#1072]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][57] ([i915#3555] / [i915#4098])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg2-8: NOTRUN -> [SKIP][58] ([i915#3555] / [i915#4098])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-9: NOTRUN -> [SKIP][59] ([i915#3708])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
- bat-dg2-8: NOTRUN -> [SKIP][60] ([i915#3708])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-8: NOTRUN -> [SKIP][61] ([i915#3708] / [i915#4077]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html
- bat-dg2-9: NOTRUN -> [SKIP][62] ([i915#3708] / [i915#4077]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][63] ([i915#3291] / [i915#3708]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-9/igt@prime_vgem@basic-write.html
- bat-dg2-8: NOTRUN -> [SKIP][64] ([i915#3291] / [i915#3708]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/bat-dg2-8/igt@prime_vgem@basic-write.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[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#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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#7634]: https://gitlab.freedesktop.org/drm/intel/issues/7634
[i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
[i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
[i915#8585]: https://gitlab.freedesktop.org/drm/intel/issues/8585
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8703]: https://gitlab.freedesktop.org/drm/intel/issues/8703
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
Build changes
-------------
* Linux: CI_DRM_13833 -> Patchwork_125895v2
CI-20190529: 20190529
CI_DRM_13833: b978573539a590501c843a520bfc65b830d10eba @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7571: 9b79b510e53d913da5d23e86f3baa6c58a2feed8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_125895v2: b978573539a590501c843a520bfc65b830d10eba @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
6665a4d167ab drm/i915/dp_mst: Disable DSC on ICL+ MST outputs
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v2/index.html
[-- Attachment #2: Type: text/html, Size: 22478 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
2023-11-02 11:59 [Intel-gfx] [PATCH] drm/i915/dp_mst: Disable DSC on ICL+ MST outputs Imre Deak
` (3 preceding siblings ...)
2023-11-03 8:01 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
@ 2023-11-03 21:09 ` Patchwork
2023-11-03 21:22 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
` (6 subsequent siblings)
11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-03 21:09 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
URL : https://patchwork.freedesktop.org/series/125895/
State : warning
== Summary ==
Error: dim checkpatch failed
757b351472e1 drm/i915/dp_mst: Disable DSC on ICL+ MST outputs
-:19: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#19:
[1] https://lore.kernel.org/all/20231030155843.2251023-1-imre.deak@intel.com
total: 0 errors, 1 warnings, 0 checks, 34 lines checked
^ permalink raw reply [flat|nested] 15+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
2023-11-02 11:59 [Intel-gfx] [PATCH] drm/i915/dp_mst: Disable DSC on ICL+ MST outputs Imre Deak
` (4 preceding siblings ...)
2023-11-03 21:09 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3) Patchwork
@ 2023-11-03 21:22 ` Patchwork
2023-11-04 13:50 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
` (5 subsequent siblings)
11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-03 21:22 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 15105 bytes --]
== Series Details ==
Series: drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
URL : https://patchwork.freedesktop.org/series/125895/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13835 -> Patchwork_125895v3
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/index.html
Participating hosts (36 -> 37)
------------------------------
Additional (3): bat-dg2-8 bat-dg2-9 fi-pnv-d510
Missing (2): fi-kbl-x1275 fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_125895v3 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_busy@busy@all-engines:
- bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#8962])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/bat-mtlp-8/igt@gem_busy@busy@all-engines.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-mtlp-8/igt@gem_busy@busy@all-engines.html
* igt@gem_lmem_swapping@verify-random:
- fi-hsw-4770: NOTRUN -> [SKIP][3] ([fdo#109271]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/fi-hsw-4770/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-dg2-9: NOTRUN -> [SKIP][4] ([i915#4083])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-9/igt@gem_mmap@basic.html
- bat-dg2-8: NOTRUN -> [SKIP][5] ([i915#4083])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-9/igt@gem_mmap_gtt@basic.html
- bat-dg2-8: NOTRUN -> [SKIP][7] ([i915#4077]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#4079]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-9/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg2-8: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@gem_tiled_pread_basic.html
* igt@i915_module_load@reload:
- fi-skl-6600u: [PASS][10] -> [DMESG-WARN][11] ([i915#1982])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/fi-skl-6600u/igt@i915_module_load@reload.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/fi-skl-6600u/igt@i915_module_load@reload.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-9: NOTRUN -> [SKIP][12] ([i915#6621])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-9/igt@i915_pm_rps@basic-api.html
- bat-dg2-8: NOTRUN -> [SKIP][13] ([i915#6621])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_lrc:
- bat-rpls-1: [PASS][14] -> [INCOMPLETE][15] ([i915#9413])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/bat-rpls-1/igt@i915_selftest@live@gt_lrc.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-rpls-1/igt@i915_selftest@live@gt_lrc.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-dg2-8: NOTRUN -> [SKIP][16] ([i915#6645])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][17] ([i915#5190])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][18] ([i915#5190])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][19] ([i915#4215] / [i915#5190])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][20] ([i915#4215] / [i915#5190])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][21] ([i915#4212]) +6 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
- bat-dg2-8: NOTRUN -> [SKIP][22] ([i915#4212]) +6 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-9: NOTRUN -> [SKIP][23] ([i915#4212] / [i915#5608])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-9/igt@kms_addfb_basic@tile-pitch-mismatch.html
- bat-dg2-8: NOTRUN -> [SKIP][24] ([i915#4212] / [i915#5608])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][25] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][26] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-9: NOTRUN -> [SKIP][27] ([fdo#109285])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg2-8: NOTRUN -> [SKIP][28] ([fdo#109285])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-9: NOTRUN -> [SKIP][29] ([i915#5274])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-8: NOTRUN -> [SKIP][30] ([i915#5274])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-adlp-9: NOTRUN -> [SKIP][31] ([i915#3546]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-adlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1:
- fi-hsw-4770: NOTRUN -> [DMESG-WARN][32] ([i915#8841]) +6 other tests dmesg-warn
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/fi-hsw-4770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html
* igt@kms_psr@cursor_plane_move:
- bat-dg2-8: NOTRUN -> [SKIP][33] ([i915#1072]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@kms_psr@cursor_plane_move.html
* igt@kms_psr@primary_page_flip:
- fi-pnv-d510: NOTRUN -> [SKIP][34] ([fdo#109271]) +29 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/fi-pnv-d510/igt@kms_psr@primary_page_flip.html
* igt@kms_psr@sprite_plane_onoff:
- bat-dg2-9: NOTRUN -> [SKIP][35] ([i915#1072]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-9/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][36] ([i915#3555] / [i915#4098])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg2-8: NOTRUN -> [SKIP][37] ([i915#3555] / [i915#4098])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-9: NOTRUN -> [SKIP][38] ([i915#3708])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
- bat-dg2-8: NOTRUN -> [SKIP][39] ([i915#3708])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-8: NOTRUN -> [SKIP][40] ([i915#3708] / [i915#4077]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html
- bat-dg2-9: NOTRUN -> [SKIP][41] ([i915#3708] / [i915#4077]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][42] ([i915#3291] / [i915#3708]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-9/igt@prime_vgem@basic-write.html
- bat-dg2-8: NOTRUN -> [SKIP][43] ([i915#3291] / [i915#3708]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-dg2-8/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [DMESG-FAIL][44] ([i915#5334]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_hdmi_inject@inject-audio:
- fi-kbl-guc: [FAIL][46] ([IGT#3]) -> [PASS][47]
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-5:
- bat-adlp-11: [DMESG-FAIL][48] ([i915#6868]) -> [PASS][49]
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-5.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-5.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5:
- bat-adlp-11: [FAIL][50] ([i915#9047]) -> [PASS][51]
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-5:
- bat-adlp-11: [ABORT][52] ([i915#8668]) -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-5.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-5.html
* igt@vgem_basic@unload:
- fi-hsw-4770: [INCOMPLETE][54] -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/fi-hsw-4770/igt@vgem_basic@unload.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/fi-hsw-4770/igt@vgem_basic@unload.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
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[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#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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962
[i915#9047]: https://gitlab.freedesktop.org/drm/intel/issues/9047
[i915#9413]: https://gitlab.freedesktop.org/drm/intel/issues/9413
Build changes
-------------
* Linux: CI_DRM_13835 -> Patchwork_125895v3
CI-20190529: 20190529
CI_DRM_13835: ca1fcd4faf444fc6d8b3cf88a17e2eb7765c1299 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7573: 69485d223b256208614e9949a4a7e84bde52d5f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_125895v3: ca1fcd4faf444fc6d8b3cf88a17e2eb7765c1299 @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
2cce8b1838ef drm/i915/dp_mst: Disable DSC on ICL+ MST outputs
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/index.html
[-- Attachment #2: Type: text/html, Size: 18756 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
2023-11-02 11:59 [Intel-gfx] [PATCH] drm/i915/dp_mst: Disable DSC on ICL+ MST outputs Imre Deak
` (5 preceding siblings ...)
2023-11-03 21:22 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-11-04 13:50 ` Patchwork
2023-11-06 11:45 ` Imre Deak
2023-11-07 13:56 ` Patchwork
` (4 subsequent siblings)
11 siblings, 1 reply; 15+ messages in thread
From: Patchwork @ 2023-11-04 13:50 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100282 bytes --]
== Series Details ==
Series: drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
URL : https://patchwork.freedesktop.org/series/125895/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13835_full -> Patchwork_125895v3_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_125895v3_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_125895v3_full, please notify your bug team (lgci.bug.filing@intel.com) 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/Patchwork_125895v3/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 Patchwork_125895v3_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rpm@gem-execbuf-stress:
- shard-dg2: NOTRUN -> [SKIP][1] +2 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@i915_pm_rpm@gem-execbuf-stress.html
* igt@kms_flip@flip-vs-suspend@a-dp4:
- shard-dg2: NOTRUN -> [INCOMPLETE][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@flip-vs-suspend@a-dp4.html
#### Warnings ####
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: [SKIP][3] ([i915#6524] / [i915#6805]) -> [SKIP][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_plane@pixel-format-source-clamping@pipe-a}:
- shard-rkl: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
* {igt@kms_pm_rpm@basic-rte}:
- shard-dg2: [PASS][7] -> [SKIP][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html
Known issues
------------
Here are the changes found in Patchwork_125895v3_full that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- shard-glk: ([PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33]) -> ([PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [FAIL][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58]) ([i915#8293])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk5/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#8411])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#7701])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [INCOMPLETE][61] ([i915#9408])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8414]) +5 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@drm_fdinfo@busy@vcs0.html
* igt@drm_fdinfo@isolation@bcs0:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#8414]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@drm_fdinfo@isolation@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][64] ([i915#7742])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#8414]) +21 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@fbdev@unaligned-read:
- shard-rkl: [PASS][66] -> [SKIP][67] ([i915#2582])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@fbdev@unaligned-read.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@fbdev@unaligned-read.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4873])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_caching@read-writes.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#7697])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [INCOMPLETE][70] ([i915#9364])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#6335])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][72] -> [FAIL][73] ([i915#6268])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg2: NOTRUN -> [SKIP][74] ([fdo#109314])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_ctx_param@set-priority-not-supported.html
- shard-rkl: NOTRUN -> [SKIP][75] ([fdo#109314])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8555])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#8555])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#8555])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#280])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#280])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#280])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-suspend:
- shard-dg2: NOTRUN -> [INCOMPLETE][82] ([i915#7892])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-dg1: [PASS][83] -> [FAIL][84] ([i915#5784])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-17/igt@gem_eio@kms.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-16/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4812])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4771])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4812]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#4525])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-apl: NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#6334])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg2: NOTRUN -> [FAIL][90] ([i915#9606])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: NOTRUN -> [FAIL][91] ([i915#2842]) +4 other tests fail
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3711])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#3539])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#3539] / [i915#4852]) +6 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][95] ([fdo#109283] / [i915#5107])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][96] ([fdo#112283]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#3281]) +7 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#3281]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#3281]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: [PASS][100] -> [SKIP][101] ([i915#3281]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#3281]) +13 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4537] / [i915#4812])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#4537] / [i915#4812])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-rkl: NOTRUN -> [ABORT][105] ([i915#7975] / [i915#8213])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#4860]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#4860]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#4613]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random:
- shard-apl: NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#4613]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#4613]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#8289])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#284])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#4083]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#4077]) +4 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4077]) +8 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#4077]) +13 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@coherency:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4083]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#4083]) +4 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#3282]) +5 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#3282]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#3282]) +4 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#3282]) +6 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#4270]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#4270]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#4270])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#4270])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#8428]) +5 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-x-tiled:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#768])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#8411])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#4079]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#4079])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#4885])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
- shard-rkl: NOTRUN -> [SKIP][133] ([fdo#109312])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#3297]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#3297] / [i915#4880]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#3297]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen3_render_tiledy_blits:
- shard-dg2: NOTRUN -> [SKIP][137] ([fdo#109289])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gen3_render_tiledy_blits.html
* igt@gen7_exec_parse@chained-batch:
- shard-dg1: NOTRUN -> [SKIP][138] ([fdo#109289])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gen7_exec_parse@chained-batch.html
* igt@gen7_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][139] ([fdo#109289]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gen7_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@allowed-single:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#2527]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#2856])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#2856]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: [PASS][143] -> [SKIP][144] ([i915#2527])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#2527]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#4881])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_fb_tiling.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#7178])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8925]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_pm_rps@thresholds-idle-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#8925]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt1.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#8925])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#8925])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#4387])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu: NOTRUN -> [SKIP][153] ([fdo#109303])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-rkl: NOTRUN -> [SKIP][154] ([fdo#109302])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@i915_query@query-topology-unsupported.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#4215] / [i915#5190])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#4212])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#4212])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@crc@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [FAIL][158] ([i915#8247]) +3 other tests fail
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html
* igt@kms_atomic@plane-overlay-legacy:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#1845] / [i915#4098])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_atomic@plane-overlay-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#1769] / [i915#3555])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#4538] / [i915#5286])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#5286]) +4 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#5286])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg2: [PASS][164] -> [SKIP][165] ([fdo#109315]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: NOTRUN -> [FAIL][166] ([i915#5138])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][167] ([fdo#111614] / [i915#3638])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#3638])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][169] ([fdo#111614]) +8 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][170] ([fdo#111614]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#6187]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [PASS][172] -> [FAIL][173] ([i915#3743]) +1 other test fail
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][174] ([fdo#109315] / [i915#5190])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#5190]) +24 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#4538]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#4538] / [i915#5190]) +4 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][178] ([fdo#111615])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][179] ([fdo#111615]) +5 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][180] ([fdo#110723]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#2705])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3742])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#4087]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg1: NOTRUN -> [SKIP][184] ([fdo#111827])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-mtlp: NOTRUN -> [SKIP][185] ([fdo#111827]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@degamma:
- shard-rkl: NOTRUN -> [SKIP][186] ([fdo#111827])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color@gamma:
- shard-dg2: NOTRUN -> [SKIP][187] ([fdo#111827])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#7828]) +10 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#7828]) +4 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#7828]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#7828]) +5 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#6944])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#3299])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3299])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#3299])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#7116])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#7118]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555]) +6 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#3359]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8814]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3359]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#3359])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#3359])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1:
- shard-glk: [PASS][204] -> [DMESG-FAIL][205] ([i915#118])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg1: NOTRUN -> [SKIP][206] ([fdo#111767] / [fdo#111825])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][207] ([fdo#111825]) +16 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#4103])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#4103] / [i915#4213] / [i915#5608])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- shard-rkl: [PASS][210] -> [SKIP][211] ([i915#1845] / [i915#4098]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3546]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: NOTRUN -> [SKIP][213] ([fdo#109274] / [i915#5354]) +6 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-apl: NOTRUN -> [SKIP][214] ([fdo#109271] / [fdo#111767]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][215] ([fdo#109274] / [fdo#111767] / [i915#5354])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][216] -> [FAIL][217] ([i915#2346])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][218] -> [FAIL][219] ([i915#2346])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#4103] / [i915#4213])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9226] / [i915#9261]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#9227])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#8588])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/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][224] ([i915#3804])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#1257])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#8812])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][229] ([fdo#109274]) +9 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-snb: NOTRUN -> [SKIP][230] ([fdo#109271]) +7 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-snb4/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3637]) +5 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#8381])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#8381])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][234] ([fdo#111825]) +7 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#8810])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#2672]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2672]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][239] ([fdo#109315]) +5 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#2672]) +4 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: [PASS][242] -> [SKIP][243] ([i915#1849] / [i915#4098]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#8708]) +8 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#5354]) +43 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][246] ([fdo#109280])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#1825]) +25 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#8708]) +5 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#8708]) +22 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#3023]) +16 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#3458]) +5 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#3458]) +20 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][253] ([fdo#111825] / [i915#1825]) +26 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8228]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_hdr@bpc-switch.html
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_hdr@bpc-switch.html
* igt@kms_invalid_mode@bad-vsync-end:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#4098])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_invalid_mode@bad-vsync-end.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#4816])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#6301])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-rkl: NOTRUN -> [SKIP][259] ([fdo#109289])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#2575]) +41 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1:
- shard-apl: NOTRUN -> [FAIL][261] ([i915#7862]) +1 other test fail
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html
* igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#3582]) +3 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8821])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#3555]) +2 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#5176] / [i915#9423]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#5235]) +15 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-19/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#5235]) +2 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/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][268] ([i915#5235]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#5235]) +15 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1:
- shard-apl: NOTRUN -> [SKIP][271] ([fdo#109271]) +98 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][272] ([i915#5235]) +8 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#6524] / [i915#6805])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#658])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#658]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-apl: NOTRUN -> [SKIP][276] ([fdo#109271] / [i915#658]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][277] ([fdo#111068] / [i915#658]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#658]) +3 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@cursor_blt:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#1072]) +4 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_psr@cursor_blt.html
* igt@kms_psr@primary_render:
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#1072] / [i915#4078]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_psr@primary_render.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#1072]) +8 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#5461] / [i915#658])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#5461] / [i915#658])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#5289])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#4235])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#3555]) +2 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][287] ([i915#5465]) +1 other test fail
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-snb4/igt@kms_setmode@basic@pipe-a-vga-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#4098]) +2 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8809])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#8623])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][291] -> [FAIL][292] ([i915#9196])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_vblank@wait-forked:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#4098]) +2 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_vblank@wait-forked.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#2437]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@create-destroy-userspace-config:
- shard-dg2: [PASS][295] -> [SKIP][296] ([i915#5608]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#7387])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][298] ([i915#7484])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][299] ([fdo#109289] / [i915#2433])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#2433])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][301] ([i915#4349]) +3 other tests fail
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@faulting-read:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#5608]) +3 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@perf_pmu@faulting-read.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#8516])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][304] ([fdo#109291])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@prime_udl.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#3291] / [i915#3708])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-write-hang:
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#3708])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@prime_vgem@fence-write-hang.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted:
- shard-mtlp: NOTRUN -> [FAIL][307] ([i915#9583])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled:
- shard-rkl: NOTRUN -> [FAIL][308] ([i915#9583])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled.html
* igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted:
- shard-apl: NOTRUN -> [FAIL][309] ([i915#9583])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted.html
* igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted:
- shard-dg2: NOTRUN -> [FAIL][310] ([i915#9582])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted.html
* igt@syncobj_timeline@wait-all-for-submit-delayed-submit:
- shard-dg2: [PASS][311] -> [SKIP][312] ([i915#2575]) +26 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
* igt@v3d/v3d_perfmon@get-values-invalid-pointer:
- shard-dg1: NOTRUN -> [SKIP][313] ([i915#2575]) +5 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][314] ([i915#2575]) +8 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@v3d/v3d_wait_bo@bad-bo:
- shard-rkl: NOTRUN -> [SKIP][315] ([fdo#109315]) +8 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@v3d/v3d_wait_bo@bad-bo.html
* igt@vc4/vc4_perfmon@destroy-valid-perfmon:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#7711]) +9 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#7711]) +6 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
* igt@vc4/vc4_purgeable_bo@mark-willneed:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#7711]) +4 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@vc4/vc4_purgeable_bo@mark-willneed.html
* igt@vc4/vc4_tiling@get-bad-modifier:
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#7711]) +2 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@vc4/vc4_tiling@get-bad-modifier.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][320] ([i915#7742]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@fbdev@pan:
- shard-rkl: [SKIP][322] ([i915#2582]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@fbdev@pan.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@fbdev@pan.html
* igt@gem_ctx_shared@q-smoketest@vcs1:
- shard-dg2: [INCOMPLETE][324] -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-7/igt@gem_ctx_shared@q-smoketest@vcs1.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_ctx_shared@q-smoketest@vcs1.html
* igt@gem_eio@wait-wedge-10ms:
- shard-mtlp: [ABORT][326] ([i915#9414]) -> [PASS][327] +2 other tests pass
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-8/igt@gem_eio@wait-wedge-10ms.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@gem_eio@wait-wedge-10ms.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-rkl: [SKIP][328] ([i915#9591]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_endless@dispatch@bcs0.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [FAIL][330] ([i915#2842]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][332] ([i915#2842]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [FAIL][334] ([i915#2842]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-mtlp: [DMESG-FAIL][336] ([i915#8962]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-1/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-rkl: [SKIP][338] ([i915#3281]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-tglu: [ABORT][340] ([i915#7975] / [i915#8213]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-apl: [INCOMPLETE][342] -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl6/igt@gem_mmap_gtt@cpuset-medium-copy.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl7/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: [SKIP][344] ([i915#3282]) -> [PASS][345] +3 other tests pass
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: [SKIP][346] ([i915#8411]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: [SKIP][348] ([i915#2527]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gen9_exec_parse@bb-chained.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][350] ([i915#3743]) -> [PASS][351] +2 other tests pass
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][352] ([i915#1845] / [i915#4098]) -> [PASS][353] +2 other tests pass
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* {igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs}:
- shard-rkl: [SKIP][354] ([i915#4098]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][356] ([i915#2346]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][358] ([i915#79]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][360] ([i915#1849] / [i915#4098]) -> [PASS][361] +3 other tests pass
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* {igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait}:
- shard-rkl: [SKIP][362] ([i915#9519]) -> [PASS][363] +1 other test pass
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-mtlp: [FAIL][364] ([i915#9196]) -> [PASS][365] +1 other test pass
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [FAIL][366] ([i915#9196]) -> [PASS][367]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][368] ([i915#4349]) -> [PASS][369] +1 other test pass
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-mtlp: [SKIP][370] ([i915#9432]) -> [PASS][371]
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@frequency@gt0.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-3/igt@perf_pmu@frequency@gt0.html
- shard-dg1: [SKIP][372] ([i915#9432]) -> [PASS][373]
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
#### Warnings ####
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-dg2: [SKIP][374] ([i915#3281]) -> [SKIP][375] ([i915#2575])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_bad_reloc@negative-reloc-lut.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_busy@semaphore:
- shard-dg2: [SKIP][376] ([i915#3936]) -> [SKIP][377] ([i915#2575])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_busy@semaphore.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_busy@semaphore.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: [SKIP][378] ([i915#4771]) -> [SKIP][379] ([i915#2575])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: [SKIP][380] ([i915#4036]) -> [SKIP][381] ([i915#2575])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_mmap_gtt@ptrace:
- shard-dg2: [SKIP][382] ([i915#4077]) -> [SKIP][383] ([i915#2575]) +1 other test skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
* igt@gem_mmap_wc@write-gtt-read-wc:
- shard-dg2: [SKIP][384] ([i915#4083]) -> [SKIP][385] ([i915#2575])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg2: [SKIP][386] ([i915#3282]) -> [SKIP][387] ([i915#2575])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg2: [SKIP][388] ([i915#4270]) -> [SKIP][389] ([i915#2575])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: [SKIP][390] ([i915#5190]) -> [SKIP][391] ([i915#2575] / [i915#5190])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gen3_mixed_blits:
- shard-dg2: [SKIP][392] ([fdo#109289]) -> [SKIP][393] ([i915#2575])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gen3_mixed_blits.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gen3_mixed_blits.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][394] ([i915#1845] / [i915#4098]) -> [SKIP][395] ([i915#1769] / [i915#3555])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][396] ([i915#4098]) -> [SKIP][397] ([i915#5286]) +1 other test skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][398] ([i915#5286]) -> [SKIP][399] ([i915#4098])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][400] ([i915#1845] / [i915#4098]) -> [SKIP][401] ([fdo#111614] / [i915#3638])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg2: [SKIP][402] ([fdo#111614]) -> [SKIP][403] ([fdo#109315])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2: [SKIP][404] ([i915#5190]) -> [SKIP][405] ([fdo#109315] / [i915#5190])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: [SKIP][406] ([fdo#110723]) -> [SKIP][407] ([i915#1845] / [i915#4098])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][408] ([i915#1845] / [i915#4098]) -> [SKIP][409] ([fdo#110723]) +1 other test skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2: [SKIP][410] ([i915#4538] / [i915#5190]) -> [SKIP][411] ([fdo#109315] / [i915#5190]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: [SKIP][412] ([fdo#111615]) -> [SKIP][413] ([i915#1845] / [i915#4098])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg2: [SKIP][414] ([i915#7828]) -> [SKIP][415] ([i915#2575]) +1 other test skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: [SKIP][416] ([i915#3116]) -> [SKIP][417] ([i915#1845] / [i915#4098])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][418] ([i915#7118]) -> [SKIP][419] ([i915#1845] / [i915#4098])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_content_protection@srm.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: [SKIP][420] ([i915#4098]) -> [SKIP][421] ([i915#3555]) +1 other test skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: [SKIP][422] ([i915#3359]) -> [SKIP][423] ([i915#4098])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x170.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][424] ([fdo#111825]) -> [SKIP][425] ([i915#1845] / [i915#4098]) +2 other tests skip
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2: [SKIP][426] ([fdo#109274] / [i915#5354]) -> [SKIP][427] ([i915#2575])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][428] ([i915#3555] / [i915#3840]) -> [SKIP][429] ([i915#4098])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][430] ([fdo#110189] / [i915#3955]) -> [SKIP][431] ([i915#3955])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_fence_pin_leak:
- shard-dg2: [SKIP][432] ([i915#4881]) -> [SKIP][433] ([i915#2575])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_fence_pin_leak.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: [SKIP][434] ([fdo#109274]) -> [SKIP][435] ([i915#2575]) +1 other test skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-rkl: [SKIP][436] ([fdo#111825] / [i915#1825]) -> [SKIP][437] ([i915#1849] / [i915#4098]) +6 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][438] ([i915#1849] / [i915#4098]) -> [SKIP][439] ([fdo#111825] / [i915#1825]) +7 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][440] ([i915#5354]) -> [SKIP][441] ([fdo#109315]) +4 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: [SKIP][442] ([i915#3023]) -> [SKIP][443] ([i915#1849] / [i915#4098]) +5 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/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][444] ([i915#1849] / [i915#4098]) -> [SKIP][445] ([fdo#111825])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][446] ([i915#8708]) -> [SKIP][447] ([fdo#109315]) +5 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu:
- shard-rkl: [SKIP][448] ([i915#1849] / [i915#4098]) -> [SKIP][449] ([i915#3023]) +3 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [SKIP][450] ([i915#3458]) -> [SKIP][451] ([fdo#109315]) +4 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][452] ([i915#4070] / [i915#4816]) -> [SKIP][453] ([i915#4816])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: [SKIP][454] ([i915#6301]) -> [SKIP][455] ([i915#2575])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_psr@psr2_cursor_plane_onoff:
- shard-dg2: [SKIP][456] ([i915#1072]) -> [SKIP][457] ([fdo#109315])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_psr@psr2_cursor_plane_onoff.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_psr@psr2_cursor_plane_onoff.html
* igt@kms_scal
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/index.html
[-- Attachment #2: Type: text/html, Size: 111290 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
2023-11-04 13:50 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-11-06 11:45 ` Imre Deak
2023-11-07 18:16 ` Illipilli, TejasreeX
0 siblings, 1 reply; 15+ messages in thread
From: Imre Deak @ 2023-11-06 11:45 UTC (permalink / raw)
To: intel-gfx, Ville Syrjälä; +Cc: lgci.bug.filing
On Sat, Nov 04, 2023 at 01:50:20PM +0000, Patchwork wrote:
> == Series Details ==
>
> Series: drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
> URL : https://patchwork.freedesktop.org/series/125895/
> State : failure
Thanks for the review, pushed to -din with the commit log fixed.
The failures are unrelated, see below.
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_13835_full -> Patchwork_125895v3_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with Patchwork_125895v3_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in Patchwork_125895v3_full, please notify your bug team (lgci.bug.filing@intel.com) 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/Patchwork_125895v3/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 Patchwork_125895v3_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@i915_pm_rpm@gem-execbuf-stress:
> - shard-dg2: NOTRUN -> [SKIP][1] +2 other tests skip
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@i915_pm_rpm@gem-execbuf-stress.html
Looks like a config issue, there's no graphics enumerated. Unrelated,
since the change only affects ICL hosts with DP MST sinks connected.
> * igt@kms_flip@flip-vs-suspend@a-dp4:
> - shard-dg2: NOTRUN -> [INCOMPLETE][2]
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@flip-vs-suspend@a-dp4.html
Unrelated, since the change only affects ICL hosts with DP MST sinks
connected.
> #### Warnings ####
>
> * igt@kms_prime@basic-crc-hybrid:
> - shard-dg2: [SKIP][3] ([i915#6524] / [i915#6805]) -> [SKIP][4]
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
>
>
> #### Suppressed ####
>
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
>
> * {igt@kms_plane@pixel-format-source-clamping@pipe-a}:
> - shard-rkl: [PASS][5] -> [INCOMPLETE][6]
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
>
> * {igt@kms_pm_rpm@basic-rte}:
> - shard-dg2: [PASS][7] -> [SKIP][8]
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html
>
>
> Known issues
> ------------
>
> Here are the changes found in Patchwork_125895v3_full that come from known issues:
>
> ### CI changes ###
>
> #### Issues hit ####
>
> * boot:
> - shard-glk: ([PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33]) -> ([PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [FAIL][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58]) ([i915#8293])
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
> [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
> [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
> [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
> [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
> [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
> [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
> [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
> [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
> [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
> [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
> [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
> [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
> [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
> [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
> [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
> [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
> [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
> [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
> [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
> [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
> [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
> [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
> [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
> [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
> [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
> [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
> [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
> [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
> [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
> [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk5/boot.html
> [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
> [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
> [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
> [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
> [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
> [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
> [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
> [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
> [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
> [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
> [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
> [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
>
>
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@api_intel_bb@blit-reloc-keep-cache:
> - shard-dg2: NOTRUN -> [SKIP][59] ([i915#8411])
> [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@api_intel_bb@blit-reloc-keep-cache.html
>
> * igt@device_reset@cold-reset-bound:
> - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#7701])
> [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@device_reset@cold-reset-bound.html
>
> * igt@device_reset@unbind-reset-rebind:
> - shard-dg1: NOTRUN -> [INCOMPLETE][61] ([i915#9408])
> [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
>
> * igt@drm_fdinfo@busy@vcs0:
> - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8414]) +5 other tests skip
> [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@drm_fdinfo@busy@vcs0.html
>
> * igt@drm_fdinfo@isolation@bcs0:
> - shard-dg1: NOTRUN -> [SKIP][63] ([i915#8414]) +4 other tests skip
> [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@drm_fdinfo@isolation@bcs0.html
>
> * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
> - shard-rkl: NOTRUN -> [FAIL][64] ([i915#7742])
> [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
>
> * igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
> - shard-dg2: NOTRUN -> [SKIP][65] ([i915#8414]) +21 other tests skip
> [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
>
> * igt@fbdev@unaligned-read:
> - shard-rkl: [PASS][66] -> [SKIP][67] ([i915#2582])
> [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@fbdev@unaligned-read.html
> [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@fbdev@unaligned-read.html
>
> * igt@gem_caching@read-writes:
> - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4873])
> [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_caching@read-writes.html
>
> * igt@gem_close_race@multigpu-basic-process:
> - shard-rkl: NOTRUN -> [SKIP][69] ([i915#7697])
> [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html
>
> * igt@gem_create@create-ext-cpu-access-big:
> - shard-dg2: NOTRUN -> [INCOMPLETE][70] ([i915#9364])
> [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
>
> * igt@gem_create@create-ext-cpu-access-sanity-check:
> - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#6335])
> [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-sanity-check.html
>
> * igt@gem_ctx_exec@basic-nohangcheck:
> - shard-tglu: [PASS][72] -> [FAIL][73] ([i915#6268])
> [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
> [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
>
> * igt@gem_ctx_param@set-priority-not-supported:
> - shard-dg2: NOTRUN -> [SKIP][74] ([fdo#109314])
> [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_ctx_param@set-priority-not-supported.html
> - shard-rkl: NOTRUN -> [SKIP][75] ([fdo#109314])
> [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_ctx_param@set-priority-not-supported.html
>
> * igt@gem_ctx_persistence@hang:
> - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8555])
> [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_ctx_persistence@hang.html
>
> * igt@gem_ctx_persistence@heartbeat-close:
> - shard-dg2: NOTRUN -> [SKIP][77] ([i915#8555])
> [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-close.html
>
> * igt@gem_ctx_persistence@heartbeat-hostile:
> - shard-dg1: NOTRUN -> [SKIP][78] ([i915#8555])
> [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html
>
> * igt@gem_ctx_sseu@engines:
> - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#280])
> [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_ctx_sseu@engines.html
>
> * igt@gem_ctx_sseu@invalid-sseu:
> - shard-dg2: NOTRUN -> [SKIP][80] ([i915#280])
> [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_ctx_sseu@invalid-sseu.html
>
> * igt@gem_ctx_sseu@mmap-args:
> - shard-dg1: NOTRUN -> [SKIP][81] ([i915#280])
> [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_ctx_sseu@mmap-args.html
>
> * igt@gem_eio@in-flight-suspend:
> - shard-dg2: NOTRUN -> [INCOMPLETE][82] ([i915#7892])
> [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_eio@in-flight-suspend.html
>
> * igt@gem_eio@kms:
> - shard-dg1: [PASS][83] -> [FAIL][84] ([i915#5784])
> [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-17/igt@gem_eio@kms.html
> [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-16/igt@gem_eio@kms.html
>
> * igt@gem_exec_balancer@bonded-false-hang:
> - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4812])
> [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_exec_balancer@bonded-false-hang.html
>
> * igt@gem_exec_balancer@bonded-sync:
> - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4771])
> [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html
>
> * igt@gem_exec_balancer@bonded-true-hang:
> - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4812]) +1 other test skip
> [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html
>
> * igt@gem_exec_balancer@parallel-contexts:
> - shard-rkl: NOTRUN -> [SKIP][88] ([i915#4525])
> [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html
>
> * igt@gem_exec_capture@capture-invisible@smem0:
> - shard-apl: NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#6334])
> [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@gem_exec_capture@capture-invisible@smem0.html
>
> * igt@gem_exec_capture@many-4k-zero:
> - shard-dg2: NOTRUN -> [FAIL][90] ([i915#9606])
> [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_capture@many-4k-zero.html
>
> * igt@gem_exec_fair@basic-pace@vecs0:
> - shard-rkl: NOTRUN -> [FAIL][91] ([i915#2842]) +4 other tests fail
> [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html
>
> * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
> - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3711])
> [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
>
> * igt@gem_exec_flush@basic-uc-set-default:
> - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3539])
> [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_flush@basic-uc-set-default.html
>
> * igt@gem_exec_flush@basic-wb-pro-default:
> - shard-dg2: NOTRUN -> [SKIP][94] ([i915#3539] / [i915#4852]) +6 other tests skip
> [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_exec_flush@basic-wb-pro-default.html
>
> * igt@gem_exec_params@rsvd2-dirt:
> - shard-dg2: NOTRUN -> [SKIP][95] ([fdo#109283] / [i915#5107])
> [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html
>
> * igt@gem_exec_params@secure-non-master:
> - shard-dg2: NOTRUN -> [SKIP][96] ([fdo#112283]) +1 other test skip
> [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_params@secure-non-master.html
>
> * igt@gem_exec_reloc@basic-cpu-read-noreloc:
> - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#3281]) +7 other tests skip
> [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
>
> * igt@gem_exec_reloc@basic-gtt-wc-active:
> - shard-rkl: NOTRUN -> [SKIP][98] ([i915#3281]) +2 other tests skip
> [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-active.html
>
> * igt@gem_exec_reloc@basic-wc-gtt-noreloc:
> - shard-dg1: NOTRUN -> [SKIP][99] ([i915#3281]) +3 other tests skip
> [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
>
> * igt@gem_exec_reloc@basic-write-read-active:
> - shard-rkl: [PASS][100] -> [SKIP][101] ([i915#3281]) +1 other test skip
> [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html
> [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-active.html
>
> * igt@gem_exec_reloc@basic-write-wc-noreloc:
> - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3281]) +13 other tests skip
> [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html
>
> * igt@gem_exec_schedule@preempt-queue:
> - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4537] / [i915#4812])
> [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue.html
>
> * igt@gem_exec_schedule@preempt-queue-chain:
> - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4537] / [i915#4812])
> [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html
>
> * igt@gem_exec_suspend@basic-s4-devices@smem:
> - shard-rkl: NOTRUN -> [ABORT][105] ([i915#7975] / [i915#8213])
> [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices@smem.html
>
> * igt@gem_fence_thrash@bo-write-verify-none:
> - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#4860]) +1 other test skip
> [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-none.html
>
> * igt@gem_fenced_exec_thrash@2-spare-fences:
> - shard-dg2: NOTRUN -> [SKIP][107] ([i915#4860]) +1 other test skip
> [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_fenced_exec_thrash@2-spare-fences.html
>
> * igt@gem_lmem_swapping@basic:
> - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#4613]) +1 other test skip
> [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_lmem_swapping@basic.html
>
> * igt@gem_lmem_swapping@parallel-random:
> - shard-apl: NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#4613]) +3 other tests skip
> [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@gem_lmem_swapping@parallel-random.html
>
> * igt@gem_lmem_swapping@parallel-random-verify-ccs:
> - shard-rkl: NOTRUN -> [SKIP][110] ([i915#4613]) +2 other tests skip
> [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
>
> * igt@gem_media_fill@media-fill:
> - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#8289])
> [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_media_fill@media-fill.html
>
> * igt@gem_media_vme:
> - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#284])
> [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_media_vme.html
>
> * igt@gem_mmap@bad-object:
> - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#4083]) +3 other tests skip
> [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_mmap@bad-object.html
>
> * igt@gem_mmap_gtt@bad-object:
> - shard-dg1: NOTRUN -> [SKIP][114] ([i915#4077]) +4 other tests skip
> [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_mmap_gtt@bad-object.html
>
> * igt@gem_mmap_gtt@cpuset-medium-copy:
> - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4077]) +8 other tests skip
> [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy.html
>
> * igt@gem_mmap_gtt@zero-extend:
> - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4077]) +13 other tests skip
> [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_mmap_gtt@zero-extend.html
>
> * igt@gem_mmap_wc@coherency:
> - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4083]) +3 other tests skip
> [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_mmap_wc@coherency.html
>
> * igt@gem_mmap_wc@invalid-flags:
> - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4083]) +4 other tests skip
> [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@gem_mmap_wc@invalid-flags.html
>
> * igt@gem_partial_pwrite_pread@reads:
> - shard-dg2: NOTRUN -> [SKIP][119] ([i915#3282]) +5 other tests skip
> [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html
>
> * igt@gem_partial_pwrite_pread@reads-display:
> - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#3282]) +3 other tests skip
> [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_partial_pwrite_pread@reads-display.html
>
> * igt@gem_partial_pwrite_pread@reads-uncached:
> - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3282]) +4 other tests skip
> [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_partial_pwrite_pread@reads-uncached.html
>
> * igt@gem_partial_pwrite_pread@writes-after-reads-display:
> - shard-dg1: NOTRUN -> [SKIP][122] ([i915#3282]) +6 other tests skip
> [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
>
> * igt@gem_pxp@regular-baseline-src-copy-readible:
> - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4270]) +3 other tests skip
> [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html
> - shard-rkl: NOTRUN -> [SKIP][124] ([i915#4270]) +2 other tests skip
> [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_pxp@regular-baseline-src-copy-readible.html
>
> * igt@gem_pxp@reject-modify-context-protection-off-1:
> - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#4270])
> [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
>
> * igt@gem_pxp@verify-pxp-stale-buf-execution:
> - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4270])
> [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_pxp@verify-pxp-stale-buf-execution.html
>
> * igt@gem_render_copy@linear-to-vebox-y-tiled:
> - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#8428]) +5 other tests skip
> [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_render_copy@linear-to-vebox-y-tiled.html
>
> * igt@gem_render_copy@y-tiled-to-vebox-x-tiled:
> - shard-rkl: NOTRUN -> [SKIP][128] ([i915#768])
> [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html
>
> * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
> - shard-rkl: NOTRUN -> [SKIP][129] ([i915#8411])
> [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
>
> * igt@gem_set_tiling_vs_blt@tiled-to-untiled:
> - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4079]) +3 other tests skip
> [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
>
> * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
> - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4079])
> [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
>
> * igt@gem_softpin@evict-snoop-interruptible:
> - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4885])
> [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
> - shard-rkl: NOTRUN -> [SKIP][133] ([fdo#109312])
> [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_softpin@evict-snoop-interruptible.html
>
> * igt@gem_userptr_blits@coherency-sync:
> - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3297]) +1 other test skip
> [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html
>
> * igt@gem_userptr_blits@map-fixed-invalidate-busy:
> - shard-dg2: NOTRUN -> [SKIP][135] ([i915#3297] / [i915#4880]) +2 other tests skip
> [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
>
> * igt@gem_userptr_blits@readonly-pwrite-unsync:
> - shard-dg1: NOTRUN -> [SKIP][136] ([i915#3297]) +1 other test skip
> [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_userptr_blits@readonly-pwrite-unsync.html
>
> * igt@gen3_render_tiledy_blits:
> - shard-dg2: NOTRUN -> [SKIP][137] ([fdo#109289])
> [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gen3_render_tiledy_blits.html
>
> * igt@gen7_exec_parse@chained-batch:
> - shard-dg1: NOTRUN -> [SKIP][138] ([fdo#109289])
> [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gen7_exec_parse@chained-batch.html
>
> * igt@gen7_exec_parse@cmd-crossing-page:
> - shard-mtlp: NOTRUN -> [SKIP][139] ([fdo#109289]) +2 other tests skip
> [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gen7_exec_parse@cmd-crossing-page.html
>
> * igt@gen9_exec_parse@allowed-single:
> - shard-dg1: NOTRUN -> [SKIP][140] ([i915#2527]) +2 other tests skip
> [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gen9_exec_parse@allowed-single.html
>
> * igt@gen9_exec_parse@batch-without-end:
> - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#2856])
> [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gen9_exec_parse@batch-without-end.html
>
> * igt@gen9_exec_parse@secure-batches:
> - shard-dg2: NOTRUN -> [SKIP][142] ([i915#2856]) +3 other tests skip
> [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gen9_exec_parse@secure-batches.html
>
> * igt@gen9_exec_parse@unaligned-access:
> - shard-rkl: [PASS][143] -> [SKIP][144] ([i915#2527])
> [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html
> [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gen9_exec_parse@unaligned-access.html
>
> * igt@gen9_exec_parse@valid-registers:
> - shard-rkl: NOTRUN -> [SKIP][145] ([i915#2527]) +1 other test skip
> [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html
>
> * igt@i915_fb_tiling:
> - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#4881])
> [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_fb_tiling.html
>
> * igt@i915_module_load@resize-bar:
> - shard-dg1: NOTRUN -> [SKIP][147] ([i915#7178])
> [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@i915_module_load@resize-bar.html
>
> * igt@i915_pm_rps@thresholds-idle-park@gt0:
> - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8925]) +1 other test skip
> [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html
>
> * igt@i915_pm_rps@thresholds-idle-park@gt1:
> - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#8925]) +1 other test skip
> [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt1.html
>
> * igt@i915_pm_rps@thresholds-park@gt0:
> - shard-dg2: NOTRUN -> [SKIP][150] ([i915#8925])
> [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@i915_pm_rps@thresholds-park@gt0.html
>
> * igt@i915_pm_rps@thresholds@gt0:
> - shard-dg1: NOTRUN -> [SKIP][151] ([i915#8925])
> [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@i915_pm_rps@thresholds@gt0.html
>
> * igt@i915_pm_sseu@full-enable:
> - shard-dg2: NOTRUN -> [SKIP][152] ([i915#4387])
> [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@i915_pm_sseu@full-enable.html
>
> * igt@i915_query@query-topology-known-pci-ids:
> - shard-tglu: NOTRUN -> [SKIP][153] ([fdo#109303])
> [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@i915_query@query-topology-known-pci-ids.html
>
> * igt@i915_query@query-topology-unsupported:
> - shard-rkl: NOTRUN -> [SKIP][154] ([fdo#109302])
> [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@i915_query@query-topology-unsupported.html
>
> * igt@kms_addfb_basic@basic-y-tiled-legacy:
> - shard-dg2: NOTRUN -> [SKIP][155] ([i915#4215] / [i915#5190])
> [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html
>
> * igt@kms_addfb_basic@bo-too-small-due-to-tiling:
> - shard-dg1: NOTRUN -> [SKIP][156] ([i915#4212])
> [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
>
> * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
> - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#4212])
> [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
>
> * igt@kms_async_flips@crc@pipe-d-dp-4:
> - shard-dg2: NOTRUN -> [FAIL][158] ([i915#8247]) +3 other tests fail
> [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html
>
> * igt@kms_atomic@plane-overlay-legacy:
> - shard-rkl: NOTRUN -> [SKIP][159] ([i915#1845] / [i915#4098])
> [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_atomic@plane-overlay-legacy.html
>
> * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
> - shard-dg2: NOTRUN -> [SKIP][160] ([i915#1769] / [i915#3555])
> [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
>
> * igt@kms_big_fb@4-tiled-16bpp-rotate-0:
> - shard-dg1: NOTRUN -> [SKIP][161] ([i915#4538] / [i915#5286])
> [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
>
> * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
> - shard-rkl: NOTRUN -> [SKIP][162] ([i915#5286]) +4 other tests skip
> [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
>
> * igt@kms_big_fb@4-tiled-addfb:
> - shard-dg1: NOTRUN -> [SKIP][163] ([i915#5286])
> [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb.html
>
> * igt@kms_big_fb@4-tiled-addfb-size-overflow:
> - shard-dg2: [PASS][164] -> [SKIP][165] ([fdo#109315]) +2 other tests skip
> [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
> [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
>
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
> - shard-mtlp: NOTRUN -> [FAIL][166] ([i915#5138])
> [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
>
> * igt@kms_big_fb@linear-16bpp-rotate-270:
> - shard-rkl: NOTRUN -> [SKIP][167] ([fdo#111614] / [i915#3638])
> [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html
>
> * igt@kms_big_fb@linear-32bpp-rotate-90:
> - shard-dg1: NOTRUN -> [SKIP][168] ([i915#3638])
> [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-90.html
>
> * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
> - shard-dg2: NOTRUN -> [SKIP][169] ([fdo#111614]) +8 other tests skip
> [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
>
> * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
> - shard-mtlp: NOTRUN -> [SKIP][170] ([fdo#111614]) +2 other tests skip
> [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
>
> * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
> - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#6187]) +1 other test skip
> [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
> - shard-tglu: [PASS][172] -> [FAIL][173] ([i915#3743]) +1 other test fail
> [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
> [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
> - shard-dg2: NOTRUN -> [SKIP][174] ([fdo#109315] / [i915#5190])
> [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
> - shard-dg2: NOTRUN -> [SKIP][175] ([i915#5190]) +24 other tests skip
> [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
>
> * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
> - shard-dg1: NOTRUN -> [SKIP][176] ([i915#4538]) +1 other test skip
> [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
>
> * igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
> - shard-dg2: NOTRUN -> [SKIP][177] ([i915#4538] / [i915#5190]) +4 other tests skip
> [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
>
> * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
> - shard-dg1: NOTRUN -> [SKIP][178] ([fdo#111615])
> [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
>
> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
> - shard-mtlp: NOTRUN -> [SKIP][179] ([fdo#111615]) +5 other tests skip
> [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
>
> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
> - shard-rkl: NOTRUN -> [SKIP][180] ([fdo#110723]) +2 other tests skip
> [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
>
> * igt@kms_big_joiner@invalid-modeset:
> - shard-rkl: NOTRUN -> [SKIP][181] ([i915#2705])
> [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_big_joiner@invalid-modeset.html
>
> * igt@kms_cdclk@plane-scaling:
> - shard-rkl: NOTRUN -> [SKIP][182] ([i915#3742])
> [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
>
> * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
> - shard-dg2: NOTRUN -> [SKIP][183] ([i915#4087]) +3 other tests skip
> [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
>
> * igt@kms_chamelium_color@ctm-0-50:
> - shard-dg1: NOTRUN -> [SKIP][184] ([fdo#111827])
> [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_chamelium_color@ctm-0-50.html
>
> * igt@kms_chamelium_color@ctm-limited-range:
> - shard-mtlp: NOTRUN -> [SKIP][185] ([fdo#111827]) +2 other tests skip
> [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_chamelium_color@ctm-limited-range.html
>
> * igt@kms_chamelium_color@degamma:
> - shard-rkl: NOTRUN -> [SKIP][186] ([fdo#111827])
> [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_chamelium_color@degamma.html
>
> * igt@kms_chamelium_color@gamma:
> - shard-dg2: NOTRUN -> [SKIP][187] ([fdo#111827])
> [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_chamelium_color@gamma.html
>
> * igt@kms_chamelium_frames@hdmi-crc-multiple:
> - shard-dg2: NOTRUN -> [SKIP][188] ([i915#7828]) +10 other tests skip
> [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
>
> * igt@kms_chamelium_frames@hdmi-frame-dump:
> - shard-rkl: NOTRUN -> [SKIP][189] ([i915#7828]) +4 other tests skip
> [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_chamelium_frames@hdmi-frame-dump.html
>
> * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
> - shard-dg1: NOTRUN -> [SKIP][190] ([i915#7828]) +2 other tests skip
> [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
>
> * igt@kms_chamelium_hpd@vga-hpd-without-ddc:
> - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#7828]) +5 other tests skip
> [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
>
> * igt@kms_content_protection@atomic:
> - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#6944])
> [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_content_protection@atomic.html
>
> * igt@kms_content_protection@dp-mst-lic-type-0:
> - shard-dg1: NOTRUN -> [SKIP][193] ([i915#3299])
> [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-0.html
>
> * igt@kms_content_protection@dp-mst-lic-type-1:
> - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3299])
> [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html
>
> * igt@kms_content_protection@dp-mst-type-1:
> - shard-dg2: NOTRUN -> [SKIP][195] ([i915#3299])
> [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_content_protection@dp-mst-type-1.html
>
> * igt@kms_content_protection@srm:
> - shard-dg1: NOTRUN -> [SKIP][196] ([i915#7116])
> [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_content_protection@srm.html
>
> * igt@kms_content_protection@type1:
> - shard-dg2: NOTRUN -> [SKIP][197] ([i915#7118]) +1 other test skip
> [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_content_protection@type1.html
>
> * igt@kms_cursor_crc@cursor-offscreen-32x10:
> - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555]) +6 other tests skip
> [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html
>
> * igt@kms_cursor_crc@cursor-offscreen-512x512:
> - shard-dg1: NOTRUN -> [SKIP][199] ([i915#3359]) +2 other tests skip
> [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-512x512.html
>
> * igt@kms_cursor_crc@cursor-onscreen-32x10:
> - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8814]) +1 other test skip
> [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
>
> * igt@kms_cursor_crc@cursor-onscreen-512x512:
> - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3359]) +1 other test skip
> [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
>
> * igt@kms_cursor_crc@cursor-random-512x170:
> - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3359])
> [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html
>
> * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
> - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3359])
> [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
>
> * igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1:
> - shard-glk: [PASS][204] -> [DMESG-FAIL][205] ([i915#118])
> [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1.html
> [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1.html
>
> * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
> - shard-dg1: NOTRUN -> [SKIP][206] ([fdo#111767] / [fdo#111825])
> [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
>
> * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
> - shard-dg1: NOTRUN -> [SKIP][207] ([fdo#111825]) +16 other tests skip
> [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
>
> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
> - shard-rkl: NOTRUN -> [SKIP][208] ([i915#4103])
> [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
> - shard-dg2: NOTRUN -> [SKIP][209] ([i915#4103] / [i915#4213] / [i915#5608])
> [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
>
> * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
> - shard-rkl: [PASS][210] -> [SKIP][211] ([i915#1845] / [i915#4098]) +1 other test skip
> [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
> [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
>
> * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
> - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3546]) +1 other test skip
> [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
> - shard-dg2: NOTRUN -> [SKIP][213] ([fdo#109274] / [i915#5354]) +6 other tests skip
> [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
> - shard-apl: NOTRUN -> [SKIP][214] ([fdo#109271] / [fdo#111767]) +1 other test skip
> [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
> - shard-dg2: NOTRUN -> [SKIP][215] ([fdo#109274] / [fdo#111767] / [i915#5354])
> [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
> - shard-apl: [PASS][216] -> [FAIL][217] ([i915#2346])
> [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
> - shard-glk: [PASS][218] -> [FAIL][219] ([i915#2346])
> [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>
> * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
> - shard-dg2: NOTRUN -> [SKIP][220] ([i915#4103] / [i915#4213])
> [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
>
> * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
> - shard-dg2: NOTRUN -> [SKIP][221] ([i915#9226] / [i915#9261]) +1 other test skip
> [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
>
> * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
> - shard-dg2: NOTRUN -> [SKIP][222] ([i915#9227])
> [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
>
> * igt@kms_display_modes@mst-extended-mode-negative:
> - shard-dg2: NOTRUN -> [SKIP][223] ([i915#8588])
> [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/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][224] ([i915#3804])
> [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
>
> * igt@kms_dp_aux_dev:
> - shard-rkl: NOTRUN -> [SKIP][225] ([i915#1257])
> [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_dp_aux_dev.html
>
> * igt@kms_draw_crc@draw-method-mmap-wc:
> - shard-dg1: NOTRUN -> [SKIP][226] ([i915#8812])
> [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html
>
> * igt@kms_dsc@dsc-with-formats:
> - shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840])
> [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
>
> * igt@kms_dsc@dsc-with-output-formats:
> - shard-dg1: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840])
> [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html
>
> * igt@kms_flip@2x-absolute-wf_vblank:
> - shard-dg2: NOTRUN -> [SKIP][229] ([fdo#109274]) +9 other tests skip
> [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_flip@2x-absolute-wf_vblank.html
>
> * igt@kms_flip@2x-blocking-wf_vblank:
> - shard-snb: NOTRUN -> [SKIP][230] ([fdo#109271]) +7 other tests skip
> [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-snb4/igt@kms_flip@2x-blocking-wf_vblank.html
>
> * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
> - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3637]) +5 other tests skip
> [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
>
> * igt@kms_flip@2x-flip-vs-fences:
> - shard-dg2: NOTRUN -> [SKIP][232] ([i915#8381])
> [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html
>
> * igt@kms_flip@2x-flip-vs-fences-interruptible:
> - shard-dg1: NOTRUN -> [SKIP][233] ([i915#8381])
> [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html
>
> * igt@kms_flip@2x-plain-flip:
> - shard-rkl: NOTRUN -> [SKIP][234] ([fdo#111825]) +7 other tests skip
> [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
> - shard-dg1: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672]) +2 other tests skip
> [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
> - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#8810])
> [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
> - shard-rkl: NOTRUN -> [SKIP][237] ([i915#2672]) +1 other test skip
> [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
> - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2672]) +1 other test skip
> [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
> - shard-dg2: NOTRUN -> [SKIP][239] ([fdo#109315]) +5 other tests skip
> [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
> - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555])
> [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
> - shard-dg2: NOTRUN -> [SKIP][241] ([i915#2672]) +4 other tests skip
> [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
> - shard-rkl: [PASS][242] -> [SKIP][243] ([i915#1849] / [i915#4098]) +1 other test skip
> [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
> [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt:
> - shard-dg1: NOTRUN -> [SKIP][244] ([i915#8708]) +8 other tests skip
> [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
> - shard-dg2: NOTRUN -> [SKIP][245] ([i915#5354]) +43 other tests skip
> [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
> - shard-tglu: NOTRUN -> [SKIP][246] ([fdo#109280])
> [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
> - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#1825]) +25 other tests skip
> [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
> - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#8708]) +5 other tests skip
> [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
> - shard-dg2: NOTRUN -> [SKIP][249] ([i915#8708]) +22 other tests skip
> [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
> - shard-rkl: NOTRUN -> [SKIP][250] ([i915#3023]) +16 other tests skip
> [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
> - shard-dg1: NOTRUN -> [SKIP][251] ([i915#3458]) +5 other tests skip
> [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
> - shard-dg2: NOTRUN -> [SKIP][252] ([i915#3458]) +20 other tests skip
> [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
> - shard-rkl: NOTRUN -> [SKIP][253] ([fdo#111825] / [i915#1825]) +26 other tests skip
> [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
>
> * igt@kms_hdr@bpc-switch:
> - shard-dg2: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8228]) +1 other test skip
> [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_hdr@bpc-switch.html
> - shard-rkl: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228]) +1 other test skip
> [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_hdr@bpc-switch.html
>
> * igt@kms_invalid_mode@bad-vsync-end:
> - shard-rkl: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#4098])
> [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_invalid_mode@bad-vsync-end.html
>
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#4816])
> [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>
> * igt@kms_panel_fitting@legacy:
> - shard-dg2: NOTRUN -> [SKIP][258] ([i915#6301])
> [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_panel_fitting@legacy.html
>
> * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
> - shard-rkl: NOTRUN -> [SKIP][259] ([fdo#109289])
> [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
>
> * igt@kms_pipe_crc_basic@suspend-read-crc:
> - shard-dg2: NOTRUN -> [SKIP][260] ([i915#2575]) +41 other tests skip
> [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc.html
>
> * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1:
> - shard-apl: NOTRUN -> [FAIL][261] ([i915#7862]) +1 other test fail
> [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html
>
> * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
> - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#3582]) +3 other tests skip
> [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
>
> * igt@kms_plane_lowres@tiling-y:
> - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8821])
> [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_plane_lowres@tiling-y.html
>
> * igt@kms_plane_multiple@tiling-yf:
> - shard-dg1: NOTRUN -> [SKIP][264] ([i915#3555]) +2 other tests skip
> [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_plane_multiple@tiling-yf.html
>
> * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
> - shard-rkl: NOTRUN -> [SKIP][265] ([i915#5176] / [i915#9423]) +1 other test skip
> [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
>
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
> - shard-dg1: NOTRUN -> [SKIP][266] ([i915#5235]) +15 other tests skip
> [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-19/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
>
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
> - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#5235]) +2 other tests skip
> [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/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][268] ([i915#5235]) +1 other test skip
> [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
>
> * igt@kms_plane_scaling@planes-upscale-factor-0-25:
> - shard-rkl: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152])
> [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
>
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4:
> - shard-dg2: NOTRUN -> [SKIP][270] ([i915#5235]) +15 other tests skip
> [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4.html
>
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1:
> - shard-apl: NOTRUN -> [SKIP][271] ([fdo#109271]) +98 other tests skip
> [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1.html
>
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
> - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#5235]) +8 other tests skip
> [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html
>
> * igt@kms_prime@basic-modeset-hybrid:
> - shard-dg2: NOTRUN -> [SKIP][273] ([i915#6524] / [i915#6805])
> [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html
>
> * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
> - shard-tglu: NOTRUN -> [SKIP][274] ([i915#658])
> [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
>
> * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
> - shard-rkl: NOTRUN -> [SKIP][275] ([i915#658]) +1 other test skip
> [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
>
> * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
> - shard-apl: NOTRUN -> [SKIP][276] ([fdo#109271] / [i915#658]) +1 other test skip
> [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
>
> * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
> - shard-dg1: NOTRUN -> [SKIP][277] ([fdo#111068] / [i915#658]) +1 other test skip
> [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
>
> * igt@kms_psr2_su@page_flip-xrgb8888:
> - shard-dg2: NOTRUN -> [SKIP][278] ([i915#658]) +3 other tests skip
> [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html
>
> * igt@kms_psr@cursor_blt:
> - shard-rkl: NOTRUN -> [SKIP][279] ([i915#1072]) +4 other tests skip
> [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_psr@cursor_blt.html
>
> * igt@kms_psr@primary_render:
> - shard-dg1: NOTRUN -> [SKIP][280] ([i915#1072] / [i915#4078]) +1 other test skip
> [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_psr@primary_render.html
>
> * igt@kms_psr@psr2_sprite_plane_move:
> - shard-dg2: NOTRUN -> [SKIP][281] ([i915#1072]) +8 other tests skip
> [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_psr@psr2_sprite_plane_move.html
>
> * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
> - shard-rkl: NOTRUN -> [SKIP][282] ([i915#5461] / [i915#658])
> [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
>
> * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
> - shard-dg2: NOTRUN -> [SKIP][283] ([i915#5461] / [i915#658])
> [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
>
> * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
> - shard-dg1: NOTRUN -> [SKIP][284] ([i915#5289])
> [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
>
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
> - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#4235])
> [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
>
> * igt@kms_scaling_modes@scaling-mode-none:
> - shard-dg2: NOTRUN -> [SKIP][286] ([i915#3555]) +2 other tests skip
> [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_scaling_modes@scaling-mode-none.html
>
> * igt@kms_setmode@basic@pipe-a-vga-1:
> - shard-snb: NOTRUN -> [FAIL][287] ([i915#5465]) +1 other test fail
> [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-snb4/igt@kms_setmode@basic@pipe-a-vga-1.html
>
> * igt@kms_setmode@clone-exclusive-crtc:
> - shard-dg2: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#4098]) +2 other tests skip
> [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_setmode@clone-exclusive-crtc.html
>
> * igt@kms_setmode@invalid-clone-single-crtc:
> - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8809])
> [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_setmode@invalid-clone-single-crtc.html
>
> * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
> - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#8623])
> [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
>
> * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
> - shard-rkl: [PASS][291] -> [FAIL][292] ([i915#9196])
> [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
> [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
>
> * igt@kms_vblank@wait-forked:
> - shard-rkl: NOTRUN -> [SKIP][293] ([i915#4098]) +2 other tests skip
> [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_vblank@wait-forked.html
>
> * igt@kms_writeback@writeback-invalid-parameters:
> - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#2437]) +1 other test skip
> [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html
>
> * igt@perf@create-destroy-userspace-config:
> - shard-dg2: [PASS][295] -> [SKIP][296] ([i915#5608]) +1 other test skip
> [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
> [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
>
> * igt@perf@global-sseu-config-invalid:
> - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#7387])
> [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html
>
> * igt@perf@non-zero-reason@0-rcs0:
> - shard-dg2: NOTRUN -> [FAIL][298] ([i915#7484])
> [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html
>
> * igt@perf@per-context-mode-unprivileged:
> - shard-dg1: NOTRUN -> [SKIP][299] ([fdo#109289] / [i915#2433])
> [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html
>
> * igt@perf@unprivileged-single-ctx-counters:
> - shard-rkl: NOTRUN -> [SKIP][300] ([i915#2433])
> [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html
>
> * igt@perf_pmu@busy-double-start@vecs1:
> - shard-dg2: NOTRUN -> [FAIL][301] ([i915#4349]) +3 other tests fail
> [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
>
> * igt@perf_pmu@faulting-read:
> - shard-dg2: NOTRUN -> [SKIP][302] ([i915#5608]) +3 other tests skip
> [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@perf_pmu@faulting-read.html
>
> * igt@perf_pmu@rc6@other-idle-gt0:
> - shard-dg1: NOTRUN -> [SKIP][303] ([i915#8516])
> [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@perf_pmu@rc6@other-idle-gt0.html
>
> * igt@prime_udl:
> - shard-dg2: NOTRUN -> [SKIP][304] ([fdo#109291])
> [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@prime_udl.html
>
> * igt@prime_vgem@basic-read:
> - shard-dg2: NOTRUN -> [SKIP][305] ([i915#3291] / [i915#3708])
> [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@prime_vgem@basic-read.html
>
> * igt@prime_vgem@fence-write-hang:
> - shard-dg1: NOTRUN -> [SKIP][306] ([i915#3708])
> [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@prime_vgem@fence-write-hang.html
>
> * igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted:
> - shard-mtlp: NOTRUN -> [FAIL][307] ([i915#9583])
> [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted.html
>
> * igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled:
> - shard-rkl: NOTRUN -> [FAIL][308] ([i915#9583])
> [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled.html
>
> * igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted:
> - shard-apl: NOTRUN -> [FAIL][309] ([i915#9583])
> [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted.html
>
> * igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted:
> - shard-dg2: NOTRUN -> [FAIL][310] ([i915#9582])
> [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted.html
>
> * igt@syncobj_timeline@wait-all-for-submit-delayed-submit:
> - shard-dg2: [PASS][311] -> [SKIP][312] ([i915#2575]) +26 other tests skip
> [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
> [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
>
> * igt@v3d/v3d_perfmon@get-values-invalid-pointer:
> - shard-dg1: NOTRUN -> [SKIP][313] ([i915#2575]) +5 other tests skip
> [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html
>
> * igt@v3d/v3d_submit_csd@bad-bo:
> - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#2575]) +8 other tests skip
> [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@v3d/v3d_submit_csd@bad-bo.html
>
> * igt@v3d/v3d_wait_bo@bad-bo:
> - shard-rkl: NOTRUN -> [SKIP][315] ([fdo#109315]) +8 other tests skip
> [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@v3d/v3d_wait_bo@bad-bo.html
>
> * igt@vc4/vc4_perfmon@destroy-valid-perfmon:
> - shard-dg2: NOTRUN -> [SKIP][316] ([i915#7711]) +9 other tests skip
> [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html
>
> * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
> - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#7711]) +6 other tests skip
> [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
>
> * igt@vc4/vc4_purgeable_bo@mark-willneed:
> - shard-rkl: NOTRUN -> [SKIP][318] ([i915#7711]) +4 other tests skip
> [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@vc4/vc4_purgeable_bo@mark-willneed.html
>
> * igt@vc4/vc4_tiling@get-bad-modifier:
> - shard-dg1: NOTRUN -> [SKIP][319] ([i915#7711]) +2 other tests skip
> [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@vc4/vc4_tiling@get-bad-modifier.html
>
>
> #### Possible fixes ####
>
> * igt@drm_fdinfo@most-busy-check-all@rcs0:
> - shard-rkl: [FAIL][320] ([i915#7742]) -> [PASS][321]
> [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
> [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
>
> * igt@fbdev@pan:
> - shard-rkl: [SKIP][322] ([i915#2582]) -> [PASS][323]
> [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@fbdev@pan.html
> [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@fbdev@pan.html
>
> * igt@gem_ctx_shared@q-smoketest@vcs1:
> - shard-dg2: [INCOMPLETE][324] -> [PASS][325]
> [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-7/igt@gem_ctx_shared@q-smoketest@vcs1.html
> [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_ctx_shared@q-smoketest@vcs1.html
>
> * igt@gem_eio@wait-wedge-10ms:
> - shard-mtlp: [ABORT][326] ([i915#9414]) -> [PASS][327] +2 other tests pass
> [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-8/igt@gem_eio@wait-wedge-10ms.html
> [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@gem_eio@wait-wedge-10ms.html
>
> * igt@gem_exec_endless@dispatch@bcs0:
> - shard-rkl: [SKIP][328] ([i915#9591]) -> [PASS][329]
> [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_endless@dispatch@bcs0.html
> [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gem_exec_endless@dispatch@bcs0.html
>
> * igt@gem_exec_fair@basic-none@vcs0:
> - shard-rkl: [FAIL][330] ([i915#2842]) -> [PASS][331]
> [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
> [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
>
> * igt@gem_exec_fair@basic-pace-share@rcs0:
> - shard-glk: [FAIL][332] ([i915#2842]) -> [PASS][333]
> [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
> [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
> - shard-tglu: [FAIL][334] ([i915#2842]) -> [PASS][335]
> [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
> [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
>
> * igt@gem_exec_flush@basic-batch-kernel-default-uc:
> - shard-mtlp: [DMESG-FAIL][336] ([i915#8962]) -> [PASS][337]
> [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
> [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-1/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
>
> * igt@gem_exec_reloc@basic-wc-gtt-noreloc:
> - shard-rkl: [SKIP][338] ([i915#3281]) -> [PASS][339]
> [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
> [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
>
> * igt@gem_exec_suspend@basic-s4-devices@smem:
> - shard-tglu: [ABORT][340] ([i915#7975] / [i915#8213]) -> [PASS][341]
> [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
> [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@gem_exec_suspend@basic-s4-devices@smem.html
>
> * igt@gem_mmap_gtt@cpuset-medium-copy:
> - shard-apl: [INCOMPLETE][342] -> [PASS][343]
> [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl6/igt@gem_mmap_gtt@cpuset-medium-copy.html
> [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl7/igt@gem_mmap_gtt@cpuset-medium-copy.html
>
> * igt@gem_partial_pwrite_pread@writes-after-reads-display:
> - shard-rkl: [SKIP][344] ([i915#3282]) -> [PASS][345] +3 other tests pass
> [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
> [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
>
> * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
> - shard-rkl: [SKIP][346] ([i915#8411]) -> [PASS][347]
> [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
> [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
>
> * igt@gen9_exec_parse@bb-chained:
> - shard-rkl: [SKIP][348] ([i915#2527]) -> [PASS][349]
> [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gen9_exec_parse@bb-chained.html
> [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html
>
> * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
> - shard-tglu: [FAIL][350] ([i915#3743]) -> [PASS][351] +2 other tests pass
> [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
> [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
>
> * igt@kms_big_fb@y-tiled-64bpp-rotate-0:
> - shard-rkl: [SKIP][352] ([i915#1845] / [i915#4098]) -> [PASS][353] +2 other tests pass
> [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
> [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
>
> * {igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs}:
> - shard-rkl: [SKIP][354] ([i915#4098]) -> [PASS][355]
> [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs.html
> [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
> - shard-apl: [FAIL][356] ([i915#2346]) -> [PASS][357]
> [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>
> * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
> - shard-glk: [FAIL][358] ([i915#79]) -> [PASS][359]
> [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
> [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
> - shard-rkl: [SKIP][360] ([i915#1849] / [i915#4098]) -> [PASS][361] +3 other tests pass
> [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
> [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
>
> * {igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait}:
> - shard-rkl: [SKIP][362] ([i915#9519]) -> [PASS][363] +1 other test pass
> [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
> [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
>
> * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
> - shard-mtlp: [FAIL][364] ([i915#9196]) -> [PASS][365] +1 other test pass
> [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
> [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
>
> * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
> - shard-tglu: [FAIL][366] ([i915#9196]) -> [PASS][367]
> [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
> [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
>
> * igt@perf_pmu@busy-double-start@rcs0:
> - shard-mtlp: [FAIL][368] ([i915#4349]) -> [PASS][369] +1 other test pass
> [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html
> [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
>
> * igt@perf_pmu@frequency@gt0:
> - shard-mtlp: [SKIP][370] ([i915#9432]) -> [PASS][371]
> [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@frequency@gt0.html
> [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-3/igt@perf_pmu@frequency@gt0.html
> - shard-dg1: [SKIP][372] ([i915#9432]) -> [PASS][373]
> [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
> [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
>
>
> #### Warnings ####
>
> * igt@gem_bad_reloc@negative-reloc-lut:
> - shard-dg2: [SKIP][374] ([i915#3281]) -> [SKIP][375] ([i915#2575])
> [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_bad_reloc@negative-reloc-lut.html
> [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_bad_reloc@negative-reloc-lut.html
>
> * igt@gem_busy@semaphore:
> - shard-dg2: [SKIP][376] ([i915#3936]) -> [SKIP][377] ([i915#2575])
> [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_busy@semaphore.html
> [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_busy@semaphore.html
>
> * igt@gem_exec_balancer@bonded-dual:
> - shard-dg2: [SKIP][378] ([i915#4771]) -> [SKIP][379] ([i915#2575])
> [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
> [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
>
> * igt@gem_exec_balancer@invalid-bonds:
> - shard-dg2: [SKIP][380] ([i915#4036]) -> [SKIP][381] ([i915#2575])
> [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
> [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
>
> * igt@gem_mmap_gtt@ptrace:
> - shard-dg2: [SKIP][382] ([i915#4077]) -> [SKIP][383] ([i915#2575]) +1 other test skip
> [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
> [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
>
> * igt@gem_mmap_wc@write-gtt-read-wc:
> - shard-dg2: [SKIP][384] ([i915#4083]) -> [SKIP][385] ([i915#2575])
> [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html
> [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html
>
> * igt@gem_partial_pwrite_pread@writes-after-reads:
> - shard-dg2: [SKIP][386] ([i915#3282]) -> [SKIP][387] ([i915#2575])
> [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html
> [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html
>
> * igt@gem_pxp@create-protected-buffer:
> - shard-dg2: [SKIP][388] ([i915#4270]) -> [SKIP][389] ([i915#2575])
> [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
> [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
>
> * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
> - shard-dg2: [SKIP][390] ([i915#5190]) -> [SKIP][391] ([i915#2575] / [i915#5190])
> [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
> [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
>
> * igt@gen3_mixed_blits:
> - shard-dg2: [SKIP][392] ([fdo#109289]) -> [SKIP][393] ([i915#2575])
> [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gen3_mixed_blits.html
> [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gen3_mixed_blits.html
>
> * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
> - shard-rkl: [SKIP][394] ([i915#1845] / [i915#4098]) -> [SKIP][395] ([i915#1769] / [i915#3555])
> [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
> [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
>
> * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
> - shard-rkl: [SKIP][396] ([i915#4098]) -> [SKIP][397] ([i915#5286]) +1 other test skip
> [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
> [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
>
> * igt@kms_big_fb@4-tiled-addfb:
> - shard-rkl: [SKIP][398] ([i915#5286]) -> [SKIP][399] ([i915#4098])
> [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
> [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html
>
> * igt@kms_big_fb@linear-8bpp-rotate-270:
> - shard-rkl: [SKIP][400] ([i915#1845] / [i915#4098]) -> [SKIP][401] ([fdo#111614] / [i915#3638])
> [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
> [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
>
> * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
> - shard-dg2: [SKIP][402] ([fdo#111614]) -> [SKIP][403] ([fdo#109315])
> [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
> [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
> - shard-dg2: [SKIP][404] ([i915#5190]) -> [SKIP][405] ([fdo#109315] / [i915#5190])
> [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
> [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
>
> * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
> - shard-rkl: [SKIP][406] ([fdo#110723]) -> [SKIP][407] ([i915#1845] / [i915#4098])
> [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
> [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
>
> * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
> - shard-rkl: [SKIP][408] ([i915#1845] / [i915#4098]) -> [SKIP][409] ([fdo#110723]) +1 other test skip
> [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
> [409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
>
> * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
> - shard-dg2: [SKIP][410] ([i915#4538] / [i915#5190]) -> [SKIP][411] ([fdo#109315] / [i915#5190]) +1 other test skip
> [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
> [411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
>
> * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
> - shard-rkl: [SKIP][412] ([fdo#111615]) -> [SKIP][413] ([i915#1845] / [i915#4098])
> [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
> [413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
>
> * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
> - shard-dg2: [SKIP][414] ([i915#7828]) -> [SKIP][415] ([i915#2575]) +1 other test skip
> [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
> [415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
>
> * igt@kms_content_protection@dp-mst-lic-type-0:
> - shard-rkl: [SKIP][416] ([i915#3116]) -> [SKIP][417] ([i915#1845] / [i915#4098])
> [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html
> [417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
>
> * igt@kms_content_protection@srm:
> - shard-rkl: [SKIP][418] ([i915#7118]) -> [SKIP][419] ([i915#1845] / [i915#4098])
> [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_content_protection@srm.html
> [419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_content_protection@srm.html
>
> * igt@kms_cursor_crc@cursor-offscreen-max-size:
> - shard-rkl: [SKIP][420] ([i915#4098]) -> [SKIP][421] ([i915#3555]) +1 other test skip
> [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html
> [421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
>
> * igt@kms_cursor_crc@cursor-sliding-512x170:
> - shard-rkl: [SKIP][422] ([i915#3359]) -> [SKIP][423] ([i915#4098])
> [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x170.html
> [423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
>
> * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
> - shard-rkl: [SKIP][424] ([fdo#111825]) -> [SKIP][425] ([i915#1845] / [i915#4098]) +2 other tests skip
> [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
> [425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
> - shard-dg2: [SKIP][426] ([fdo#109274] / [i915#5354]) -> [SKIP][427] ([i915#2575])
> [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
> [427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
>
> * igt@kms_dsc@dsc-with-output-formats:
> - shard-rkl: [SKIP][428] ([i915#3555] / [i915#3840]) -> [SKIP][429] ([i915#4098])
> [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
> [429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html
>
> * igt@kms_fbcon_fbt@psr:
> - shard-rkl: [SKIP][430] ([fdo#110189] / [i915#3955]) -> [SKIP][431] ([i915#3955])
> [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
> [431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
>
> * igt@kms_fence_pin_leak:
> - shard-dg2: [SKIP][432] ([i915#4881]) -> [SKIP][433] ([i915#2575])
> [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_fence_pin_leak.html
> [433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_fence_pin_leak.html
>
> * igt@kms_flip@2x-flip-vs-panning-vs-hang:
> - shard-dg2: [SKIP][434] ([fdo#109274]) -> [SKIP][435] ([i915#2575]) +1 other test skip
> [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
> [435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
> - shard-rkl: [SKIP][436] ([fdo#111825] / [i915#1825]) -> [SKIP][437] ([i915#1849] / [i915#4098]) +6 other tests skip
> [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
> [437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
> - shard-rkl: [SKIP][438] ([i915#1849] / [i915#4098]) -> [SKIP][439] ([fdo#111825] / [i915#1825]) +7 other tests skip
> [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
> [439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
> - shard-dg2: [SKIP][440] ([i915#5354]) -> [SKIP][441] ([fdo#109315]) +4 other tests skip
> [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
> [441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
> - shard-rkl: [SKIP][442] ([i915#3023]) -> [SKIP][443] ([i915#1849] / [i915#4098]) +5 other tests skip
> [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
> [443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/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][444] ([i915#1849] / [i915#4098]) -> [SKIP][445] ([fdo#111825])
> [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
> [445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
> - shard-dg2: [SKIP][446] ([i915#8708]) -> [SKIP][447] ([fdo#109315]) +5 other tests skip
> [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
> [447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu:
> - shard-rkl: [SKIP][448] ([i915#1849] / [i915#4098]) -> [SKIP][449] ([i915#3023]) +3 other tests skip
> [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
> [449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite:
> - shard-dg2: [SKIP][450] ([i915#3458]) -> [SKIP][451] ([fdo#109315]) +4 other tests skip
> [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
> [451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
>
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> - shard-rkl: [SKIP][452] ([i915#4070] / [i915#4816]) -> [SKIP][453] ([i915#4816])
> [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> [453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>
> * igt@kms_panel_fitting@atomic-fastset:
> - shard-dg2: [SKIP][454] ([i915#6301]) -> [SKIP][455] ([i915#2575])
> [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
> [455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
>
> * igt@kms_psr@psr2_cursor_plane_onoff:
> - shard-dg2: [SKIP][456] ([i915#1072]) -> [SKIP][457] ([fdo#109315])
> [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_psr@psr2_cursor_plane_onoff.html
> [457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_psr@psr2_cursor_plane_onoff.html
>
> * igt@kms_scal
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/index.html
^ permalink raw reply [flat|nested] 15+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
2023-11-02 11:59 [Intel-gfx] [PATCH] drm/i915/dp_mst: Disable DSC on ICL+ MST outputs Imre Deak
` (6 preceding siblings ...)
2023-11-04 13:50 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-11-07 13:56 ` Patchwork
2023-11-07 17:35 ` Patchwork
` (3 subsequent siblings)
11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-07 13:56 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100278 bytes --]
== Series Details ==
Series: drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
URL : https://patchwork.freedesktop.org/series/125895/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13835_full -> Patchwork_125895v3_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_125895v3_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_125895v3_full, please notify your bug team (lgci.bug.filing@intel.com) 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/Patchwork_125895v3/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 Patchwork_125895v3_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rpm@gem-execbuf-stress:
- shard-dg2: NOTRUN -> [SKIP][1] +2 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@i915_pm_rpm@gem-execbuf-stress.html
#### Warnings ####
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: [SKIP][2] ([i915#6524] / [i915#6805]) -> [SKIP][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_plane@pixel-format-source-clamping@pipe-a}:
- shard-rkl: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
* {igt@kms_pm_rpm@basic-rte}:
- shard-dg2: [PASS][6] -> [SKIP][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html
Known issues
------------
Here are the changes found in Patchwork_125895v3_full that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- shard-glk: ([PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32]) -> ([PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [FAIL][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57]) ([i915#8293])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk5/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#8411])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#7701])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [INCOMPLETE][60] ([i915#9408])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#8414]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@drm_fdinfo@busy@vcs0.html
* igt@drm_fdinfo@isolation@bcs0:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#8414]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@drm_fdinfo@isolation@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][63] ([i915#7742])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#8414]) +21 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@fbdev@unaligned-read:
- shard-rkl: [PASS][65] -> [SKIP][66] ([i915#2582])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@fbdev@unaligned-read.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@fbdev@unaligned-read.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4873])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_caching@read-writes.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#7697])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [INCOMPLETE][69] ([i915#9364])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#6335])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][71] -> [FAIL][72] ([i915#6268])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg2: NOTRUN -> [SKIP][73] ([fdo#109314])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_ctx_param@set-priority-not-supported.html
- shard-rkl: NOTRUN -> [SKIP][74] ([fdo#109314])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8555])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#8555])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#8555])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#280])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#280])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#280])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-suspend:
- shard-dg2: NOTRUN -> [INCOMPLETE][81] ([i915#7892])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-dg1: [PASS][82] -> [FAIL][83] ([i915#5784])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-17/igt@gem_eio@kms.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-16/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4812])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4771])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4812]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#4525])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-apl: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#6334])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg2: NOTRUN -> [FAIL][89] ([i915#9606])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: NOTRUN -> [FAIL][90] ([i915#2842]) +4 other tests fail
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3711])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#3539])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#3539] / [i915#4852]) +6 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][94] ([fdo#109283] / [i915#5107])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][95] ([fdo#112283]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3281]) +7 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#3281]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#3281]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: [PASS][99] -> [SKIP][100] ([i915#3281]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#3281]) +13 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4537] / [i915#4812])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#4537] / [i915#4812])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-rkl: NOTRUN -> [ABORT][104] ([i915#7975] / [i915#8213])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#4860]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#4860]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4613]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random:
- shard-apl: NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#4613]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#4613]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#8289])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#284])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#4083]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#4077]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4077]) +8 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4077]) +13 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@coherency:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#4083]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4083]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#3282]) +5 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#3282]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#3282]) +4 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#3282]) +6 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4270]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#4270]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4270])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#4270])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#8428]) +5 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-x-tiled:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#768])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#8411])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4079]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4079])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4885])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
- shard-rkl: NOTRUN -> [SKIP][132] ([fdo#109312])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#3297]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#3297] / [i915#4880]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#3297]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen3_render_tiledy_blits:
- shard-dg2: NOTRUN -> [SKIP][136] ([fdo#109289])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gen3_render_tiledy_blits.html
* igt@gen7_exec_parse@chained-batch:
- shard-dg1: NOTRUN -> [SKIP][137] ([fdo#109289])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gen7_exec_parse@chained-batch.html
* igt@gen7_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][138] ([fdo#109289]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gen7_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@allowed-single:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#2527]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#2856])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#2856]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: [PASS][142] -> [SKIP][143] ([i915#2527])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#2527]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#4881])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_fb_tiling.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#7178])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#8925]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_pm_rps@thresholds-idle-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3555] / [i915#8925]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt1.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#8925])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#8925])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#4387])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu: NOTRUN -> [SKIP][152] ([fdo#109303])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-rkl: NOTRUN -> [SKIP][153] ([fdo#109302])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@i915_query@query-topology-unsupported.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#4215] / [i915#5190])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#4212])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#4212])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@crc@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [FAIL][157] ([i915#8247]) +3 other tests fail
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html
* igt@kms_atomic@plane-overlay-legacy:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#1845] / [i915#4098])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_atomic@plane-overlay-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#1769] / [i915#3555])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#4538] / [i915#5286])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#5286]) +4 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#5286])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg2: [PASS][163] -> [SKIP][164] ([fdo#109315]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: NOTRUN -> [FAIL][165] ([i915#5138])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][166] ([fdo#111614] / [i915#3638])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#3638])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][168] ([fdo#111614]) +8 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][169] ([fdo#111614]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#6187]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [PASS][171] -> [FAIL][172] ([i915#3743]) +1 other test fail
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][173] ([fdo#109315] / [i915#5190])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#5190]) +24 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#4538]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#4538] / [i915#5190]) +4 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][177] ([fdo#111615])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][178] ([fdo#111615]) +5 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][179] ([fdo#110723]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#2705])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3742])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#4087]) +3 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg1: NOTRUN -> [SKIP][183] ([fdo#111827])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-mtlp: NOTRUN -> [SKIP][184] ([fdo#111827]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@degamma:
- shard-rkl: NOTRUN -> [SKIP][185] ([fdo#111827])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color@gamma:
- shard-dg2: NOTRUN -> [SKIP][186] ([fdo#111827])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#7828]) +10 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#7828]) +4 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#7828]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#7828]) +5 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#6944])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#3299])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3299])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#3299])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#7116])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#7118]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#3555]) +6 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#3359]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8814]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3359]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#3359])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#3359])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1:
- shard-glk: [PASS][203] -> [DMESG-FAIL][204] ([i915#118])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg1: NOTRUN -> [SKIP][205] ([fdo#111767] / [fdo#111825])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][206] ([fdo#111825]) +16 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#4103])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#4103] / [i915#4213] / [i915#5608])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- shard-rkl: [PASS][209] -> [SKIP][210] ([i915#1845] / [i915#4098]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3546]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: NOTRUN -> [SKIP][212] ([fdo#109274] / [i915#5354]) +6 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-apl: NOTRUN -> [SKIP][213] ([fdo#109271] / [fdo#111767]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][214] ([fdo#109274] / [fdo#111767] / [i915#5354])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][215] -> [FAIL][216] ([i915#2346])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][217] -> [FAIL][218] ([i915#2346])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#4103] / [i915#4213])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#9226] / [i915#9261]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9227])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#8588])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/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][223] ([i915#3804])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#1257])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#8812])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#3840])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][228] ([fdo#109274]) +9 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-snb: NOTRUN -> [SKIP][229] ([fdo#109271]) +7 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-snb4/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#3637]) +5 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#8381])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#8381])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][233] ([fdo#111825]) +7 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-suspend@a-dp4:
- shard-dg2: NOTRUN -> [INCOMPLETE][234] ([i915#4839])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@flip-vs-suspend@a-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#8810])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#2672]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2672]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][239] ([fdo#109315]) +5 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#2672]) +4 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: [PASS][242] -> [SKIP][243] ([i915#1849] / [i915#4098]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#8708]) +8 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#5354]) +43 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][246] ([fdo#109280])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#1825]) +25 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#8708]) +5 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#8708]) +22 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#3023]) +16 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#3458]) +5 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#3458]) +20 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][253] ([fdo#111825] / [i915#1825]) +26 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8228]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_hdr@bpc-switch.html
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_hdr@bpc-switch.html
* igt@kms_invalid_mode@bad-vsync-end:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#4098])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_invalid_mode@bad-vsync-end.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#4816])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#6301])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-rkl: NOTRUN -> [SKIP][259] ([fdo#109289])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#2575]) +41 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1:
- shard-apl: NOTRUN -> [FAIL][261] ([i915#7862]) +1 other test fail
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html
* igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#3582]) +3 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8821])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#3555]) +2 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#5176] / [i915#9423]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#5235]) +15 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-19/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#5235]) +2 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/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][268] ([i915#5235]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#5235]) +15 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1:
- shard-apl: NOTRUN -> [SKIP][271] ([fdo#109271]) +98 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][272] ([i915#5235]) +8 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#6524] / [i915#6805])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#658])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#658]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-apl: NOTRUN -> [SKIP][276] ([fdo#109271] / [i915#658]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][277] ([fdo#111068] / [i915#658]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#658]) +3 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@cursor_blt:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#1072]) +4 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_psr@cursor_blt.html
* igt@kms_psr@primary_render:
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#1072] / [i915#4078]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_psr@primary_render.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#1072]) +8 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#5461] / [i915#658])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#5461] / [i915#658])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#5289])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#4235])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#3555]) +2 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][287] ([i915#5465]) +1 other test fail
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-snb4/igt@kms_setmode@basic@pipe-a-vga-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#4098]) +2 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8809])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#8623])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][291] -> [FAIL][292] ([i915#9196])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_vblank@wait-forked:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#4098]) +2 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_vblank@wait-forked.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#2437]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@create-destroy-userspace-config:
- shard-dg2: [PASS][295] -> [SKIP][296] ([i915#5608]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#7387])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][298] ([i915#7484])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][299] ([fdo#109289] / [i915#2433])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#2433])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][301] ([i915#4349]) +3 other tests fail
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@faulting-read:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#5608]) +3 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@perf_pmu@faulting-read.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#8516])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][304] ([fdo#109291])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@prime_udl.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#3291] / [i915#3708])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-write-hang:
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#3708])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@prime_vgem@fence-write-hang.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted:
- shard-mtlp: NOTRUN -> [FAIL][307] ([i915#9583])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled:
- shard-rkl: NOTRUN -> [FAIL][308] ([i915#9583])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled.html
* igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted:
- shard-apl: NOTRUN -> [FAIL][309] ([i915#9583])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted.html
* igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted:
- shard-dg2: NOTRUN -> [FAIL][310] ([i915#9582])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted.html
* igt@syncobj_timeline@wait-all-for-submit-delayed-submit:
- shard-dg2: [PASS][311] -> [SKIP][312] ([i915#2575]) +26 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
* igt@v3d/v3d_perfmon@get-values-invalid-pointer:
- shard-dg1: NOTRUN -> [SKIP][313] ([i915#2575]) +5 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][314] ([i915#2575]) +8 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@v3d/v3d_wait_bo@bad-bo:
- shard-rkl: NOTRUN -> [SKIP][315] ([fdo#109315]) +8 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@v3d/v3d_wait_bo@bad-bo.html
* igt@vc4/vc4_perfmon@destroy-valid-perfmon:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#7711]) +9 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#7711]) +6 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
* igt@vc4/vc4_purgeable_bo@mark-willneed:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#7711]) +4 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@vc4/vc4_purgeable_bo@mark-willneed.html
* igt@vc4/vc4_tiling@get-bad-modifier:
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#7711]) +2 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@vc4/vc4_tiling@get-bad-modifier.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][320] ([i915#7742]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@fbdev@pan:
- shard-rkl: [SKIP][322] ([i915#2582]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@fbdev@pan.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@fbdev@pan.html
* igt@gem_ctx_shared@q-smoketest@vcs1:
- shard-dg2: [INCOMPLETE][324] -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-7/igt@gem_ctx_shared@q-smoketest@vcs1.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_ctx_shared@q-smoketest@vcs1.html
* igt@gem_eio@wait-wedge-10ms:
- shard-mtlp: [ABORT][326] ([i915#9414]) -> [PASS][327] +2 other tests pass
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-8/igt@gem_eio@wait-wedge-10ms.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@gem_eio@wait-wedge-10ms.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-rkl: [SKIP][328] ([i915#9591]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_endless@dispatch@bcs0.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [FAIL][330] ([i915#2842]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][332] ([i915#2842]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [FAIL][334] ([i915#2842]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-mtlp: [DMESG-FAIL][336] ([i915#8962]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-1/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-rkl: [SKIP][338] ([i915#3281]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-tglu: [ABORT][340] ([i915#7975] / [i915#8213]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-apl: [INCOMPLETE][342] -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl6/igt@gem_mmap_gtt@cpuset-medium-copy.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl7/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: [SKIP][344] ([i915#3282]) -> [PASS][345] +3 other tests pass
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: [SKIP][346] ([i915#8411]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: [SKIP][348] ([i915#2527]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gen9_exec_parse@bb-chained.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][350] ([i915#3743]) -> [PASS][351] +2 other tests pass
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][352] ([i915#1845] / [i915#4098]) -> [PASS][353] +2 other tests pass
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* {igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs}:
- shard-rkl: [SKIP][354] ([i915#4098]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][356] ([i915#2346]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][358] ([i915#79]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][360] ([i915#1849] / [i915#4098]) -> [PASS][361] +3 other tests pass
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* {igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait}:
- shard-rkl: [SKIP][362] ([i915#9519]) -> [PASS][363] +1 other test pass
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-mtlp: [FAIL][364] ([i915#9196]) -> [PASS][365] +1 other test pass
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [FAIL][366] ([i915#9196]) -> [PASS][367]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][368] ([i915#4349]) -> [PASS][369] +1 other test pass
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-mtlp: [SKIP][370] ([i915#9432]) -> [PASS][371]
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@frequency@gt0.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-3/igt@perf_pmu@frequency@gt0.html
- shard-dg1: [SKIP][372] ([i915#9432]) -> [PASS][373]
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
#### Warnings ####
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-dg2: [SKIP][374] ([i915#3281]) -> [SKIP][375] ([i915#2575])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_bad_reloc@negative-reloc-lut.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_busy@semaphore:
- shard-dg2: [SKIP][376] ([i915#3936]) -> [SKIP][377] ([i915#2575])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_busy@semaphore.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_busy@semaphore.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: [SKIP][378] ([i915#4771]) -> [SKIP][379] ([i915#2575])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: [SKIP][380] ([i915#4036]) -> [SKIP][381] ([i915#2575])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_mmap_gtt@ptrace:
- shard-dg2: [SKIP][382] ([i915#4077]) -> [SKIP][383] ([i915#2575]) +1 other test skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
* igt@gem_mmap_wc@write-gtt-read-wc:
- shard-dg2: [SKIP][384] ([i915#4083]) -> [SKIP][385] ([i915#2575])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg2: [SKIP][386] ([i915#3282]) -> [SKIP][387] ([i915#2575])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg2: [SKIP][388] ([i915#4270]) -> [SKIP][389] ([i915#2575])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: [SKIP][390] ([i915#5190]) -> [SKIP][391] ([i915#2575] / [i915#5190])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gen3_mixed_blits:
- shard-dg2: [SKIP][392] ([fdo#109289]) -> [SKIP][393] ([i915#2575])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gen3_mixed_blits.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gen3_mixed_blits.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][394] ([i915#1845] / [i915#4098]) -> [SKIP][395] ([i915#1769] / [i915#3555])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][396] ([i915#4098]) -> [SKIP][397] ([i915#5286]) +1 other test skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][398] ([i915#5286]) -> [SKIP][399] ([i915#4098])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][400] ([i915#1845] / [i915#4098]) -> [SKIP][401] ([fdo#111614] / [i915#3638])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg2: [SKIP][402] ([fdo#111614]) -> [SKIP][403] ([fdo#109315])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2: [SKIP][404] ([i915#5190]) -> [SKIP][405] ([fdo#109315] / [i915#5190])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: [SKIP][406] ([fdo#110723]) -> [SKIP][407] ([i915#1845] / [i915#4098])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][408] ([i915#1845] / [i915#4098]) -> [SKIP][409] ([fdo#110723]) +1 other test skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2: [SKIP][410] ([i915#4538] / [i915#5190]) -> [SKIP][411] ([fdo#109315] / [i915#5190]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: [SKIP][412] ([fdo#111615]) -> [SKIP][413] ([i915#1845] / [i915#4098])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg2: [SKIP][414] ([i915#7828]) -> [SKIP][415] ([i915#2575]) +1 other test skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: [SKIP][416] ([i915#3116]) -> [SKIP][417] ([i915#1845] / [i915#4098])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][418] ([i915#7118]) -> [SKIP][419] ([i915#1845] / [i915#4098])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_content_protection@srm.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: [SKIP][420] ([i915#4098]) -> [SKIP][421] ([i915#3555]) +1 other test skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: [SKIP][422] ([i915#3359]) -> [SKIP][423] ([i915#4098])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x170.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][424] ([fdo#111825]) -> [SKIP][425] ([i915#1845] / [i915#4098]) +2 other tests skip
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2: [SKIP][426] ([fdo#109274] / [i915#5354]) -> [SKIP][427] ([i915#2575])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][428] ([i915#3555] / [i915#3840]) -> [SKIP][429] ([i915#4098])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][430] ([fdo#110189] / [i915#3955]) -> [SKIP][431] ([i915#3955])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_fence_pin_leak:
- shard-dg2: [SKIP][432] ([i915#4881]) -> [SKIP][433] ([i915#2575])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_fence_pin_leak.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: [SKIP][434] ([fdo#109274]) -> [SKIP][435] ([i915#2575]) +1 other test skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-rkl: [SKIP][436] ([fdo#111825] / [i915#1825]) -> [SKIP][437] ([i915#1849] / [i915#4098]) +6 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][438] ([i915#1849] / [i915#4098]) -> [SKIP][439] ([fdo#111825] / [i915#1825]) +7 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][440] ([i915#5354]) -> [SKIP][441] ([fdo#109315]) +4 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: [SKIP][442] ([i915#3023]) -> [SKIP][443] ([i915#1849] / [i915#4098]) +5 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/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][444] ([i915#1849] / [i915#4098]) -> [SKIP][445] ([fdo#111825])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][446] ([i915#8708]) -> [SKIP][447] ([fdo#109315]) +5 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu:
- shard-rkl: [SKIP][448] ([i915#1849] / [i915#4098]) -> [SKIP][449] ([i915#3023]) +3 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [SKIP][450] ([i915#3458]) -> [SKIP][451] ([fdo#109315]) +4 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][452] ([i915#4070] / [i915#4816]) -> [SKIP][453] ([i915#4816])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: [SKIP][454] ([i915#6301]) -> [SKIP][455] ([i915#2575])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_psr@psr2_cursor_plane_onoff:
- shard-dg2: [SKIP][456] ([i915#1072]) -> [SKIP][457] ([fdo#109315])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_psr@psr2_cursor_plane_onoff.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_psr@psr2_cursor_plane_onoff.html
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/index.html
[-- Attachment #2: Type: text/html, Size: 111259 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
2023-11-02 11:59 [Intel-gfx] [PATCH] drm/i915/dp_mst: Disable DSC on ICL+ MST outputs Imre Deak
` (7 preceding siblings ...)
2023-11-07 13:56 ` Patchwork
@ 2023-11-07 17:35 ` Patchwork
2023-11-07 17:41 ` Patchwork
` (2 subsequent siblings)
11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-07 17:35 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100282 bytes --]
== Series Details ==
Series: drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
URL : https://patchwork.freedesktop.org/series/125895/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13835_full -> Patchwork_125895v3_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_125895v3_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_125895v3_full, please notify your bug team (lgci.bug.filing@intel.com) 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/Patchwork_125895v3/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 Patchwork_125895v3_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_lmem_swapping@verify:
- shard-dg2: NOTRUN -> [SKIP][1] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_lmem_swapping@verify.html
#### Warnings ####
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: [SKIP][2] ([i915#6524] / [i915#6805]) -> [SKIP][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_plane@pixel-format-source-clamping@pipe-a}:
- shard-rkl: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
* {igt@kms_pm_rpm@basic-rte}:
- shard-dg2: [PASS][6] -> [SKIP][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html
Known issues
------------
Here are the changes found in Patchwork_125895v3_full that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- shard-glk: ([PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32]) -> ([PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [FAIL][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57]) ([i915#8293])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk5/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#8411])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#7701])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [INCOMPLETE][60] ([i915#9408])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#8414]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@drm_fdinfo@busy@vcs0.html
* igt@drm_fdinfo@isolation@bcs0:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#8414]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@drm_fdinfo@isolation@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][63] ([i915#7742])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#8414]) +21 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@fbdev@unaligned-read:
- shard-rkl: [PASS][65] -> [SKIP][66] ([i915#2582])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@fbdev@unaligned-read.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@fbdev@unaligned-read.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4873])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_caching@read-writes.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#7697])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [INCOMPLETE][69] ([i915#9364])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#6335])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][71] -> [FAIL][72] ([i915#6268])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg2: NOTRUN -> [SKIP][73] ([fdo#109314])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_ctx_param@set-priority-not-supported.html
- shard-rkl: NOTRUN -> [SKIP][74] ([fdo#109314])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8555])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#8555])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#8555])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#280])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#280])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#280])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-suspend:
- shard-dg2: NOTRUN -> [INCOMPLETE][81] ([i915#7892])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-dg1: [PASS][82] -> [FAIL][83] ([i915#5784])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-17/igt@gem_eio@kms.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-16/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4812])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4771])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4812]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#4525])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-apl: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#6334])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg2: NOTRUN -> [FAIL][89] ([i915#9606])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: NOTRUN -> [FAIL][90] ([i915#2842]) +4 other tests fail
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3711])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#3539])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#3539] / [i915#4852]) +6 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][94] ([fdo#109283] / [i915#5107])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][95] ([fdo#112283]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3281]) +7 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#3281]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#3281]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: [PASS][99] -> [SKIP][100] ([i915#3281]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#3281]) +13 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4537] / [i915#4812])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#4537] / [i915#4812])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-rkl: NOTRUN -> [ABORT][104] ([i915#7975] / [i915#8213])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#4860]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#4860]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4613]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random:
- shard-apl: NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#4613]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#4613]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#8289])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#284])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#4083]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#4077]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4077]) +8 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4077]) +13 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@coherency:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#4083]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4083]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#3282]) +5 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#3282]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#3282]) +4 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#3282]) +6 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4270]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#4270]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4270])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#4270])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#8428]) +5 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-x-tiled:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#768])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#8411])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4079]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4079])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4885])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
- shard-rkl: NOTRUN -> [SKIP][132] ([fdo#109312])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#3297]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#3297] / [i915#4880]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#3297]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen3_render_tiledy_blits:
- shard-dg2: NOTRUN -> [SKIP][136] ([fdo#109289])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gen3_render_tiledy_blits.html
* igt@gen7_exec_parse@chained-batch:
- shard-dg1: NOTRUN -> [SKIP][137] ([fdo#109289])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gen7_exec_parse@chained-batch.html
* igt@gen7_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][138] ([fdo#109289]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gen7_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@allowed-single:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#2527]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#2856])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#2856]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: [PASS][142] -> [SKIP][143] ([i915#2527])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#2527]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#4881])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_fb_tiling.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#7178])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rpm@gem-execbuf-stress:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#9641])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@i915_pm_rpm@gem-execbuf-stress.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8925]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_pm_rps@thresholds-idle-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#8925]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt1.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#8925])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#8925])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#4387])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu: NOTRUN -> [SKIP][153] ([fdo#109303])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-rkl: NOTRUN -> [SKIP][154] ([fdo#109302])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@i915_query@query-topology-unsupported.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#4215] / [i915#5190])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#4212])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#4212])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@crc@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [FAIL][158] ([i915#8247]) +3 other tests fail
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html
* igt@kms_atomic@plane-overlay-legacy:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#1845] / [i915#4098])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_atomic@plane-overlay-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#1769] / [i915#3555])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#4538] / [i915#5286])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#5286]) +4 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#5286])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg2: [PASS][164] -> [SKIP][165] ([fdo#109315]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: NOTRUN -> [FAIL][166] ([i915#5138])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][167] ([fdo#111614] / [i915#3638])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#3638])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][169] ([fdo#111614]) +8 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][170] ([fdo#111614]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#6187]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [PASS][172] -> [FAIL][173] ([i915#3743]) +1 other test fail
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][174] ([fdo#109315] / [i915#5190])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#5190]) +24 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#4538]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#4538] / [i915#5190]) +4 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][178] ([fdo#111615])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][179] ([fdo#111615]) +5 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][180] ([fdo#110723]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#2705])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3742])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#4087]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg1: NOTRUN -> [SKIP][184] ([fdo#111827])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-mtlp: NOTRUN -> [SKIP][185] ([fdo#111827]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@degamma:
- shard-rkl: NOTRUN -> [SKIP][186] ([fdo#111827])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color@gamma:
- shard-dg2: NOTRUN -> [SKIP][187] ([fdo#111827])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#7828]) +10 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#7828]) +4 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#7828]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#7828]) +5 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#6944])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#3299])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3299])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#3299])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#7116])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#7118]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555]) +6 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#3359]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8814]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3359]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#3359])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#3359])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1:
- shard-glk: [PASS][204] -> [DMESG-FAIL][205] ([i915#118])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg1: NOTRUN -> [SKIP][206] ([fdo#111767] / [fdo#111825])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][207] ([fdo#111825]) +16 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#4103])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#4103] / [i915#4213] / [i915#5608])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- shard-rkl: [PASS][210] -> [SKIP][211] ([i915#1845] / [i915#4098]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3546]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: NOTRUN -> [SKIP][213] ([fdo#109274] / [i915#5354]) +6 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-apl: NOTRUN -> [SKIP][214] ([fdo#109271] / [fdo#111767]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][215] ([fdo#109274] / [fdo#111767] / [i915#5354])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][216] -> [FAIL][217] ([i915#2346])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][218] -> [FAIL][219] ([i915#2346])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#4103] / [i915#4213])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9226] / [i915#9261]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#9227])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#8588])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/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][224] ([i915#3804])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#1257])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#8812])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][229] ([fdo#109274]) +9 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-snb: NOTRUN -> [SKIP][230] ([fdo#109271]) +7 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-snb4/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3637]) +5 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#8381])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#8381])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][234] ([fdo#111825]) +7 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-suspend@a-dp4:
- shard-dg2: NOTRUN -> [INCOMPLETE][235] ([i915#4839])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@flip-vs-suspend@a-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#2587] / [i915#2672]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#8810])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#2672]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2672]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][240] ([fdo#109315]) +5 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#3555])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#2672]) +4 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: [PASS][243] -> [SKIP][244] ([i915#1849] / [i915#4098]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#8708]) +8 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#5354]) +43 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][247] ([fdo#109280])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#1825]) +25 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#8708]) +5 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#8708]) +22 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#3023]) +16 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#3458]) +5 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#3458]) +20 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][254] ([fdo#111825] / [i915#1825]) +26 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_hdr@bpc-switch.html
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_hdr@bpc-switch.html
* igt@kms_invalid_mode@bad-vsync-end:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#4098])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_invalid_mode@bad-vsync-end.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#4816])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#6301])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-rkl: NOTRUN -> [SKIP][260] ([fdo#109289])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#2575]) +41 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1:
- shard-apl: NOTRUN -> [FAIL][262] ([i915#7862]) +1 other test fail
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html
* igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#3582]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8821])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#3555]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#5176] / [i915#9423]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#5235]) +15 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-19/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#5235]) +2 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/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][269] ([i915#5235]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#5235]) +15 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1:
- shard-apl: NOTRUN -> [SKIP][272] ([fdo#109271]) +98 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#5235]) +8 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#6524] / [i915#6805])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#658])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#658]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-apl: NOTRUN -> [SKIP][277] ([fdo#109271] / [i915#658]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][278] ([fdo#111068] / [i915#658]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#658]) +3 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@cursor_blt:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#1072]) +4 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_psr@cursor_blt.html
* igt@kms_psr@primary_render:
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#1072] / [i915#4078]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_psr@primary_render.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#1072]) +8 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#5461] / [i915#658])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#5461] / [i915#658])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#5289])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#4235])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#3555]) +2 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][288] ([i915#5465]) +1 other test fail
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-snb4/igt@kms_setmode@basic@pipe-a-vga-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#4098]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8809])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#8623])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][292] -> [FAIL][293] ([i915#9196])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_vblank@wait-forked:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#4098]) +2 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_vblank@wait-forked.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#2437]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@create-destroy-userspace-config:
- shard-dg2: [PASS][296] -> [SKIP][297] ([i915#5608]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#7387])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][299] ([i915#7484])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][300] ([fdo#109289] / [i915#2433])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#2433])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][302] ([i915#4349]) +3 other tests fail
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@faulting-read:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#5608]) +3 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@perf_pmu@faulting-read.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#8516])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][305] ([fdo#109291])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@prime_udl.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#3291] / [i915#3708])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-write-hang:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#3708])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@prime_vgem@fence-write-hang.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted:
- shard-mtlp: NOTRUN -> [FAIL][308] ([i915#9583])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled:
- shard-rkl: NOTRUN -> [FAIL][309] ([i915#9583])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled.html
* igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted:
- shard-apl: NOTRUN -> [FAIL][310] ([i915#9583])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted.html
* igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted:
- shard-dg2: NOTRUN -> [FAIL][311] ([i915#9582])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted.html
* igt@syncobj_timeline@wait-all-for-submit-delayed-submit:
- shard-dg2: [PASS][312] -> [SKIP][313] ([i915#2575]) +26 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
* igt@v3d/v3d_perfmon@get-values-invalid-pointer:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#2575]) +5 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#2575]) +8 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@v3d/v3d_wait_bo@bad-bo:
- shard-rkl: NOTRUN -> [SKIP][316] ([fdo#109315]) +8 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@v3d/v3d_wait_bo@bad-bo.html
* igt@vc4/vc4_perfmon@destroy-valid-perfmon:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#7711]) +9 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#7711]) +6 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
* igt@vc4/vc4_purgeable_bo@mark-willneed:
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#7711]) +4 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@vc4/vc4_purgeable_bo@mark-willneed.html
* igt@vc4/vc4_tiling@get-bad-modifier:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#7711]) +2 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@vc4/vc4_tiling@get-bad-modifier.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][321] ([i915#7742]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@fbdev@pan:
- shard-rkl: [SKIP][323] ([i915#2582]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@fbdev@pan.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@fbdev@pan.html
* igt@gem_ctx_shared@q-smoketest@vcs1:
- shard-dg2: [INCOMPLETE][325] -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-7/igt@gem_ctx_shared@q-smoketest@vcs1.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_ctx_shared@q-smoketest@vcs1.html
* igt@gem_eio@wait-wedge-10ms:
- shard-mtlp: [ABORT][327] ([i915#9414]) -> [PASS][328] +2 other tests pass
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-8/igt@gem_eio@wait-wedge-10ms.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@gem_eio@wait-wedge-10ms.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-rkl: [SKIP][329] ([i915#9591]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_endless@dispatch@bcs0.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [FAIL][331] ([i915#2842]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][333] ([i915#2842]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [FAIL][335] ([i915#2842]) -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-mtlp: [DMESG-FAIL][337] ([i915#8962]) -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-1/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-rkl: [SKIP][339] ([i915#3281]) -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-tglu: [ABORT][341] ([i915#7975] / [i915#8213]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-apl: [INCOMPLETE][343] -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl6/igt@gem_mmap_gtt@cpuset-medium-copy.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl7/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: [SKIP][345] ([i915#3282]) -> [PASS][346] +3 other tests pass
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: [SKIP][347] ([i915#8411]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: [SKIP][349] ([i915#2527]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gen9_exec_parse@bb-chained.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][351] ([i915#3743]) -> [PASS][352] +2 other tests pass
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][353] ([i915#1845] / [i915#4098]) -> [PASS][354] +2 other tests pass
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* {igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs}:
- shard-rkl: [SKIP][355] ([i915#4098]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][357] ([i915#2346]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][359] ([i915#79]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][361] ([i915#1849] / [i915#4098]) -> [PASS][362] +3 other tests pass
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* {igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait}:
- shard-rkl: [SKIP][363] ([i915#9519]) -> [PASS][364] +1 other test pass
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-mtlp: [FAIL][365] ([i915#9196]) -> [PASS][366] +1 other test pass
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [FAIL][367] ([i915#9196]) -> [PASS][368]
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][369] ([i915#4349]) -> [PASS][370] +1 other test pass
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-mtlp: [SKIP][371] ([i915#9432]) -> [PASS][372]
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@frequency@gt0.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-3/igt@perf_pmu@frequency@gt0.html
- shard-dg1: [SKIP][373] ([i915#9432]) -> [PASS][374]
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
#### Warnings ####
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-dg2: [SKIP][375] ([i915#3281]) -> [SKIP][376] ([i915#2575])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_bad_reloc@negative-reloc-lut.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_busy@semaphore:
- shard-dg2: [SKIP][377] ([i915#3936]) -> [SKIP][378] ([i915#2575])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_busy@semaphore.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_busy@semaphore.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: [SKIP][379] ([i915#4771]) -> [SKIP][380] ([i915#2575])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: [SKIP][381] ([i915#4036]) -> [SKIP][382] ([i915#2575])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_mmap_gtt@ptrace:
- shard-dg2: [SKIP][383] ([i915#4077]) -> [SKIP][384] ([i915#2575]) +1 other test skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
* igt@gem_mmap_wc@write-gtt-read-wc:
- shard-dg2: [SKIP][385] ([i915#4083]) -> [SKIP][386] ([i915#2575])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg2: [SKIP][387] ([i915#3282]) -> [SKIP][388] ([i915#2575])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg2: [SKIP][389] ([i915#4270]) -> [SKIP][390] ([i915#2575])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: [SKIP][391] ([i915#5190]) -> [SKIP][392] ([i915#2575] / [i915#5190])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gen3_mixed_blits:
- shard-dg2: [SKIP][393] ([fdo#109289]) -> [SKIP][394] ([i915#2575])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gen3_mixed_blits.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gen3_mixed_blits.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][395] ([i915#1845] / [i915#4098]) -> [SKIP][396] ([i915#1769] / [i915#3555])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][397] ([i915#4098]) -> [SKIP][398] ([i915#5286]) +1 other test skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][399] ([i915#5286]) -> [SKIP][400] ([i915#4098])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][401] ([i915#1845] / [i915#4098]) -> [SKIP][402] ([fdo#111614] / [i915#3638])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg2: [SKIP][403] ([fdo#111614]) -> [SKIP][404] ([fdo#109315])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2: [SKIP][405] ([i915#5190]) -> [SKIP][406] ([fdo#109315] / [i915#5190])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: [SKIP][407] ([fdo#110723]) -> [SKIP][408] ([i915#1845] / [i915#4098])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][409] ([i915#1845] / [i915#4098]) -> [SKIP][410] ([fdo#110723]) +1 other test skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2: [SKIP][411] ([i915#4538] / [i915#5190]) -> [SKIP][412] ([fdo#109315] / [i915#5190]) +1 other test skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: [SKIP][413] ([fdo#111615]) -> [SKIP][414] ([i915#1845] / [i915#4098])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg2: [SKIP][415] ([i915#7828]) -> [SKIP][416] ([i915#2575]) +1 other test skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: [SKIP][417] ([i915#3116]) -> [SKIP][418] ([i915#1845] / [i915#4098])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][419] ([i915#7118]) -> [SKIP][420] ([i915#1845] / [i915#4098])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_content_protection@srm.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: [SKIP][421] ([i915#4098]) -> [SKIP][422] ([i915#3555]) +1 other test skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: [SKIP][423] ([i915#3359]) -> [SKIP][424] ([i915#4098])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x170.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][425] ([fdo#111825]) -> [SKIP][426] ([i915#1845] / [i915#4098]) +2 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2: [SKIP][427] ([fdo#109274] / [i915#5354]) -> [SKIP][428] ([i915#2575])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][429] ([i915#3555] / [i915#3840]) -> [SKIP][430] ([i915#4098])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][431] ([fdo#110189] / [i915#3955]) -> [SKIP][432] ([i915#3955])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_fence_pin_leak:
- shard-dg2: [SKIP][433] ([i915#4881]) -> [SKIP][434] ([i915#2575])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_fence_pin_leak.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: [SKIP][435] ([fdo#109274]) -> [SKIP][436] ([i915#2575]) +1 other test skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-rkl: [SKIP][437] ([fdo#111825] / [i915#1825]) -> [SKIP][438] ([i915#1849] / [i915#4098]) +6 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][439] ([i915#1849] / [i915#4098]) -> [SKIP][440] ([fdo#111825] / [i915#1825]) +7 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][441] ([i915#5354]) -> [SKIP][442] ([fdo#109315]) +4 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: [SKIP][443] ([i915#3023]) -> [SKIP][444] ([i915#1849] / [i915#4098]) +5 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/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][445] ([i915#1849] / [i915#4098]) -> [SKIP][446] ([fdo#111825])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][447] ([i915#8708]) -> [SKIP][448] ([fdo#109315]) +5 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu:
- shard-rkl: [SKIP][449] ([i915#1849] / [i915#4098]) -> [SKIP][450] ([i915#3023]) +3 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [SKIP][451] ([i915#3458]) -> [SKIP][452] ([fdo#109315]) +4 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][453] ([i915#4070] / [i915#4816]) -> [SKIP][454] ([i915#4816])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: [SKIP][455] ([i915#6301]) -> [SKIP][456] ([i915#2575])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_psr@psr2_cursor_plane_onoff:
- shard-dg2: [SKIP][457] ([i915#1072]) -> [SKIP][458] ([fdo#109315])
[457]: https://intel-gfx-ci.0
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/index.html
[-- Attachment #2: Type: text/html, Size: 111299 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
2023-11-02 11:59 [Intel-gfx] [PATCH] drm/i915/dp_mst: Disable DSC on ICL+ MST outputs Imre Deak
` (8 preceding siblings ...)
2023-11-07 17:35 ` Patchwork
@ 2023-11-07 17:41 ` Patchwork
2023-11-07 17:57 ` Patchwork
2023-11-07 18:12 ` [Intel-gfx] ✓ Fi.CI.IGT: success " Patchwork
11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-07 17:41 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100282 bytes --]
== Series Details ==
Series: drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
URL : https://patchwork.freedesktop.org/series/125895/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13835_full -> Patchwork_125895v3_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_125895v3_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_125895v3_full, please notify your bug team (lgci.bug.filing@intel.com) 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/Patchwork_125895v3/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 Patchwork_125895v3_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_lmem_swapping@verify:
- shard-dg2: NOTRUN -> [SKIP][1] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_lmem_swapping@verify.html
#### Warnings ####
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: [SKIP][2] ([i915#6524] / [i915#6805]) -> [SKIP][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_plane@pixel-format-source-clamping@pipe-a}:
- shard-rkl: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
* {igt@kms_pm_rpm@basic-rte}:
- shard-dg2: [PASS][6] -> [SKIP][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html
Known issues
------------
Here are the changes found in Patchwork_125895v3_full that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- shard-glk: ([PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32]) -> ([PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [FAIL][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57]) ([i915#8293])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk5/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#8411])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#7701])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [INCOMPLETE][60] ([i915#9408])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#8414]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@drm_fdinfo@busy@vcs0.html
* igt@drm_fdinfo@isolation@bcs0:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#8414]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@drm_fdinfo@isolation@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][63] ([i915#7742])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#8414]) +21 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@fbdev@unaligned-read:
- shard-rkl: [PASS][65] -> [SKIP][66] ([i915#2582])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@fbdev@unaligned-read.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@fbdev@unaligned-read.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4873])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_caching@read-writes.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#7697])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [INCOMPLETE][69] ([i915#9364])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#6335])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][71] -> [FAIL][72] ([i915#6268])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg2: NOTRUN -> [SKIP][73] ([fdo#109314])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_ctx_param@set-priority-not-supported.html
- shard-rkl: NOTRUN -> [SKIP][74] ([fdo#109314])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8555])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#8555])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#8555])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#280])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#280])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#280])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-suspend:
- shard-dg2: NOTRUN -> [INCOMPLETE][81] ([i915#7892])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-dg1: [PASS][82] -> [FAIL][83] ([i915#5784])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-17/igt@gem_eio@kms.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-16/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4812])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4771])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4812]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#4525])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-apl: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#6334])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg2: NOTRUN -> [FAIL][89] ([i915#9606])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: NOTRUN -> [FAIL][90] ([i915#2842]) +4 other tests fail
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3711])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#3539])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#3539] / [i915#4852]) +6 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][94] ([fdo#109283] / [i915#5107])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][95] ([fdo#112283]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3281]) +7 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#3281]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#3281]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: [PASS][99] -> [SKIP][100] ([i915#3281]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#3281]) +13 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4537] / [i915#4812])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#4537] / [i915#4812])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-rkl: NOTRUN -> [ABORT][104] ([i915#7975] / [i915#8213])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#4860]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#4860]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4613]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random:
- shard-apl: NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#4613]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#4613]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#8289])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#284])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#4083]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#4077]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4077]) +8 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4077]) +13 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@coherency:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#4083]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4083]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#3282]) +5 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#3282]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#3282]) +4 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#3282]) +6 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4270]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#4270]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4270])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#4270])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#8428]) +5 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-x-tiled:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#768])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#8411])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4079]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4079])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4885])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
- shard-rkl: NOTRUN -> [SKIP][132] ([fdo#109312])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#3297]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#3297] / [i915#4880]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#3297]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen3_render_tiledy_blits:
- shard-dg2: NOTRUN -> [SKIP][136] ([fdo#109289])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gen3_render_tiledy_blits.html
* igt@gen7_exec_parse@chained-batch:
- shard-dg1: NOTRUN -> [SKIP][137] ([fdo#109289])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gen7_exec_parse@chained-batch.html
* igt@gen7_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][138] ([fdo#109289]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gen7_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@allowed-single:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#2527]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#2856])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#2856]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: [PASS][142] -> [SKIP][143] ([i915#2527])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#2527]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#4881])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_fb_tiling.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#7178])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rpm@gem-execbuf-stress:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#9641])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@i915_pm_rpm@gem-execbuf-stress.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8925]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_pm_rps@thresholds-idle-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#8925]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt1.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#8925])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#8925])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#4387])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu: NOTRUN -> [SKIP][153] ([fdo#109303])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-rkl: NOTRUN -> [SKIP][154] ([fdo#109302])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@i915_query@query-topology-unsupported.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#4215] / [i915#5190])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#4212])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#4212])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@crc@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [FAIL][158] ([i915#8247]) +3 other tests fail
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html
* igt@kms_atomic@plane-overlay-legacy:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#1845] / [i915#4098])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_atomic@plane-overlay-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#1769] / [i915#3555])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#4538] / [i915#5286])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#5286]) +4 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#5286])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg2: [PASS][164] -> [SKIP][165] ([fdo#109315]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: NOTRUN -> [FAIL][166] ([i915#5138])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][167] ([fdo#111614] / [i915#3638])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#3638])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][169] ([fdo#111614]) +8 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][170] ([fdo#111614]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#6187]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [PASS][172] -> [FAIL][173] ([i915#3743]) +1 other test fail
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][174] ([fdo#109315] / [i915#5190])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#5190]) +24 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#4538]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#4538] / [i915#5190]) +4 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][178] ([fdo#111615])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][179] ([fdo#111615]) +5 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][180] ([fdo#110723]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#2705])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3742])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#4087]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg1: NOTRUN -> [SKIP][184] ([fdo#111827])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-mtlp: NOTRUN -> [SKIP][185] ([fdo#111827]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@degamma:
- shard-rkl: NOTRUN -> [SKIP][186] ([fdo#111827])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color@gamma:
- shard-dg2: NOTRUN -> [SKIP][187] ([fdo#111827])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#7828]) +10 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#7828]) +4 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#7828]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#7828]) +5 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#6944])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#3299])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3299])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#3299])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#7116])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#7118]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555]) +6 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#3359]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8814]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3359]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#3359])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#3359])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1:
- shard-glk: [PASS][204] -> [DMESG-FAIL][205] ([i915#118])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg1: NOTRUN -> [SKIP][206] ([fdo#111767] / [fdo#111825])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][207] ([fdo#111825]) +16 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#4103])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#4103] / [i915#4213] / [i915#5608])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- shard-rkl: [PASS][210] -> [SKIP][211] ([i915#1845] / [i915#4098]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3546]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: NOTRUN -> [SKIP][213] ([fdo#109274] / [i915#5354]) +6 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-apl: NOTRUN -> [SKIP][214] ([fdo#109271] / [fdo#111767]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][215] ([fdo#109274] / [fdo#111767] / [i915#5354])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][216] -> [FAIL][217] ([i915#2346])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][218] -> [FAIL][219] ([i915#2346])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#4103] / [i915#4213])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9226] / [i915#9261]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#9227])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#8588])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/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][224] ([i915#3804])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#1257])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#8812])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][229] ([fdo#109274]) +9 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-snb: NOTRUN -> [SKIP][230] ([fdo#109271]) +7 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-snb4/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3637]) +5 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#8381])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#8381])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][234] ([fdo#111825]) +7 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-suspend@a-dp4:
- shard-dg2: NOTRUN -> [INCOMPLETE][235] ([i915#4839])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@flip-vs-suspend@a-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#2587] / [i915#2672]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#8810])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#2672]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2672]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][240] ([fdo#109315]) +5 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#3555])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#2672]) +4 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: [PASS][243] -> [SKIP][244] ([i915#1849] / [i915#4098]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#8708]) +8 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#5354]) +43 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][247] ([fdo#109280])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#1825]) +25 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#8708]) +5 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#8708]) +22 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#3023]) +16 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#3458]) +5 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#3458]) +20 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][254] ([fdo#111825] / [i915#1825]) +26 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_hdr@bpc-switch.html
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_hdr@bpc-switch.html
* igt@kms_invalid_mode@bad-vsync-end:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#4098])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_invalid_mode@bad-vsync-end.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#4816])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#6301])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-rkl: NOTRUN -> [SKIP][260] ([fdo#109289])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#2575]) +41 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1:
- shard-apl: NOTRUN -> [FAIL][262] ([i915#7862]) +1 other test fail
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html
* igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#3582]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8821])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#3555]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#5176] / [i915#9423]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#5235]) +15 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-19/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#5235]) +2 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/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][269] ([i915#5235]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#5235]) +15 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1:
- shard-apl: NOTRUN -> [SKIP][272] ([fdo#109271]) +98 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#5235]) +8 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#6524] / [i915#6805])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#658])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#658]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-apl: NOTRUN -> [SKIP][277] ([fdo#109271] / [i915#658]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][278] ([fdo#111068] / [i915#658]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#658]) +3 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@cursor_blt:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#1072]) +4 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_psr@cursor_blt.html
* igt@kms_psr@primary_render:
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#1072] / [i915#4078]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_psr@primary_render.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#1072]) +8 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#5461] / [i915#658])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#5461] / [i915#658])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#5289])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#4235])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#3555]) +2 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][288] ([i915#5465]) +1 other test fail
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-snb4/igt@kms_setmode@basic@pipe-a-vga-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#4098]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8809])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#8623])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][292] -> [FAIL][293] ([i915#9196])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_vblank@wait-forked:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#4098]) +2 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_vblank@wait-forked.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#2437]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@create-destroy-userspace-config:
- shard-dg2: [PASS][296] -> [SKIP][297] ([i915#5608]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#7387])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][299] ([i915#7484])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][300] ([fdo#109289] / [i915#2433])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#2433])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][302] ([i915#4349]) +3 other tests fail
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@faulting-read:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#5608]) +3 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@perf_pmu@faulting-read.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#8516])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][305] ([fdo#109291])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@prime_udl.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#3291] / [i915#3708])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-write-hang:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#3708])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@prime_vgem@fence-write-hang.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted:
- shard-mtlp: NOTRUN -> [FAIL][308] ([i915#9583])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled:
- shard-rkl: NOTRUN -> [FAIL][309] ([i915#9583])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled.html
* igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted:
- shard-apl: NOTRUN -> [FAIL][310] ([i915#9583])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted.html
* igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted:
- shard-dg2: NOTRUN -> [FAIL][311] ([i915#9582])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted.html
* igt@syncobj_timeline@wait-all-for-submit-delayed-submit:
- shard-dg2: [PASS][312] -> [SKIP][313] ([i915#2575]) +26 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
* igt@v3d/v3d_perfmon@get-values-invalid-pointer:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#2575]) +5 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#2575]) +8 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@v3d/v3d_wait_bo@bad-bo:
- shard-rkl: NOTRUN -> [SKIP][316] ([fdo#109315]) +8 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@v3d/v3d_wait_bo@bad-bo.html
* igt@vc4/vc4_perfmon@destroy-valid-perfmon:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#7711]) +9 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#7711]) +6 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
* igt@vc4/vc4_purgeable_bo@mark-willneed:
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#7711]) +4 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@vc4/vc4_purgeable_bo@mark-willneed.html
* igt@vc4/vc4_tiling@get-bad-modifier:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#7711]) +2 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@vc4/vc4_tiling@get-bad-modifier.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][321] ([i915#7742]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@fbdev@pan:
- shard-rkl: [SKIP][323] ([i915#2582]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@fbdev@pan.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@fbdev@pan.html
* igt@gem_ctx_shared@q-smoketest@vcs1:
- shard-dg2: [INCOMPLETE][325] -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-7/igt@gem_ctx_shared@q-smoketest@vcs1.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_ctx_shared@q-smoketest@vcs1.html
* igt@gem_eio@wait-wedge-10ms:
- shard-mtlp: [ABORT][327] ([i915#9414]) -> [PASS][328] +2 other tests pass
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-8/igt@gem_eio@wait-wedge-10ms.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@gem_eio@wait-wedge-10ms.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-rkl: [SKIP][329] ([i915#9591]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_endless@dispatch@bcs0.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [FAIL][331] ([i915#2842]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][333] ([i915#2842]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [FAIL][335] ([i915#2842]) -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-mtlp: [DMESG-FAIL][337] ([i915#8962]) -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-1/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-rkl: [SKIP][339] ([i915#3281]) -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-tglu: [ABORT][341] ([i915#7975] / [i915#8213]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-apl: [INCOMPLETE][343] -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl6/igt@gem_mmap_gtt@cpuset-medium-copy.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl7/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: [SKIP][345] ([i915#3282]) -> [PASS][346] +3 other tests pass
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: [SKIP][347] ([i915#8411]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: [SKIP][349] ([i915#2527]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gen9_exec_parse@bb-chained.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][351] ([i915#3743]) -> [PASS][352] +2 other tests pass
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][353] ([i915#1845] / [i915#4098]) -> [PASS][354] +2 other tests pass
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* {igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs}:
- shard-rkl: [SKIP][355] ([i915#4098]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][357] ([i915#2346]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][359] ([i915#79]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][361] ([i915#1849] / [i915#4098]) -> [PASS][362] +3 other tests pass
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* {igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait}:
- shard-rkl: [SKIP][363] ([i915#9519]) -> [PASS][364] +1 other test pass
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-mtlp: [FAIL][365] ([i915#9196]) -> [PASS][366] +1 other test pass
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [FAIL][367] ([i915#9196]) -> [PASS][368]
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][369] ([i915#4349]) -> [PASS][370] +1 other test pass
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-mtlp: [SKIP][371] ([i915#9432]) -> [PASS][372]
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@frequency@gt0.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-3/igt@perf_pmu@frequency@gt0.html
- shard-dg1: [SKIP][373] ([i915#9432]) -> [PASS][374]
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
#### Warnings ####
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-dg2: [SKIP][375] ([i915#3281]) -> [SKIP][376] ([i915#2575])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_bad_reloc@negative-reloc-lut.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_busy@semaphore:
- shard-dg2: [SKIP][377] ([i915#3936]) -> [SKIP][378] ([i915#2575])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_busy@semaphore.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_busy@semaphore.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: [SKIP][379] ([i915#4771]) -> [SKIP][380] ([i915#2575])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: [SKIP][381] ([i915#4036]) -> [SKIP][382] ([i915#2575])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_mmap_gtt@ptrace:
- shard-dg2: [SKIP][383] ([i915#4077]) -> [SKIP][384] ([i915#2575]) +1 other test skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
* igt@gem_mmap_wc@write-gtt-read-wc:
- shard-dg2: [SKIP][385] ([i915#4083]) -> [SKIP][386] ([i915#2575])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg2: [SKIP][387] ([i915#3282]) -> [SKIP][388] ([i915#2575])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg2: [SKIP][389] ([i915#4270]) -> [SKIP][390] ([i915#2575])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: [SKIP][391] ([i915#5190]) -> [SKIP][392] ([i915#2575] / [i915#5190])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gen3_mixed_blits:
- shard-dg2: [SKIP][393] ([fdo#109289]) -> [SKIP][394] ([i915#2575])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gen3_mixed_blits.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gen3_mixed_blits.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][395] ([i915#1845] / [i915#4098]) -> [SKIP][396] ([i915#1769] / [i915#3555])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][397] ([i915#4098]) -> [SKIP][398] ([i915#5286]) +1 other test skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][399] ([i915#5286]) -> [SKIP][400] ([i915#4098])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][401] ([i915#1845] / [i915#4098]) -> [SKIP][402] ([fdo#111614] / [i915#3638])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg2: [SKIP][403] ([fdo#111614]) -> [SKIP][404] ([fdo#109315])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2: [SKIP][405] ([i915#5190]) -> [SKIP][406] ([fdo#109315] / [i915#5190])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: [SKIP][407] ([fdo#110723]) -> [SKIP][408] ([i915#1845] / [i915#4098])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][409] ([i915#1845] / [i915#4098]) -> [SKIP][410] ([fdo#110723]) +1 other test skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2: [SKIP][411] ([i915#4538] / [i915#5190]) -> [SKIP][412] ([fdo#109315] / [i915#5190]) +1 other test skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: [SKIP][413] ([fdo#111615]) -> [SKIP][414] ([i915#1845] / [i915#4098])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg2: [SKIP][415] ([i915#7828]) -> [SKIP][416] ([i915#2575]) +1 other test skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: [SKIP][417] ([i915#3116]) -> [SKIP][418] ([i915#1845] / [i915#4098])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][419] ([i915#7118]) -> [SKIP][420] ([i915#1845] / [i915#4098])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_content_protection@srm.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: [SKIP][421] ([i915#4098]) -> [SKIP][422] ([i915#3555]) +1 other test skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: [SKIP][423] ([i915#3359]) -> [SKIP][424] ([i915#4098])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x170.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][425] ([fdo#111825]) -> [SKIP][426] ([i915#1845] / [i915#4098]) +2 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2: [SKIP][427] ([fdo#109274] / [i915#5354]) -> [SKIP][428] ([i915#2575])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][429] ([i915#3555] / [i915#3840]) -> [SKIP][430] ([i915#4098])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][431] ([fdo#110189] / [i915#3955]) -> [SKIP][432] ([i915#3955])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_fence_pin_leak:
- shard-dg2: [SKIP][433] ([i915#4881]) -> [SKIP][434] ([i915#2575])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_fence_pin_leak.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: [SKIP][435] ([fdo#109274]) -> [SKIP][436] ([i915#2575]) +1 other test skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-rkl: [SKIP][437] ([fdo#111825] / [i915#1825]) -> [SKIP][438] ([i915#1849] / [i915#4098]) +6 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][439] ([i915#1849] / [i915#4098]) -> [SKIP][440] ([fdo#111825] / [i915#1825]) +7 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][441] ([i915#5354]) -> [SKIP][442] ([fdo#109315]) +4 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: [SKIP][443] ([i915#3023]) -> [SKIP][444] ([i915#1849] / [i915#4098]) +5 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/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][445] ([i915#1849] / [i915#4098]) -> [SKIP][446] ([fdo#111825])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][447] ([i915#8708]) -> [SKIP][448] ([fdo#109315]) +5 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu:
- shard-rkl: [SKIP][449] ([i915#1849] / [i915#4098]) -> [SKIP][450] ([i915#3023]) +3 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [SKIP][451] ([i915#3458]) -> [SKIP][452] ([fdo#109315]) +4 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][453] ([i915#4070] / [i915#4816]) -> [SKIP][454] ([i915#4816])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: [SKIP][455] ([i915#6301]) -> [SKIP][456] ([i915#2575])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_psr@psr2_cursor_plane_onoff:
- shard-dg2: [SKIP][457] ([i915#1072]) -> [SKIP][458] ([fdo#109315])
[457]: https://intel-gfx-ci.0
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/index.html
[-- Attachment #2: Type: text/html, Size: 111299 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
2023-11-02 11:59 [Intel-gfx] [PATCH] drm/i915/dp_mst: Disable DSC on ICL+ MST outputs Imre Deak
` (9 preceding siblings ...)
2023-11-07 17:41 ` Patchwork
@ 2023-11-07 17:57 ` Patchwork
2023-11-07 18:12 ` [Intel-gfx] ✓ Fi.CI.IGT: success " Patchwork
11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-07 17:57 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100282 bytes --]
== Series Details ==
Series: drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
URL : https://patchwork.freedesktop.org/series/125895/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13835_full -> Patchwork_125895v3_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_125895v3_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_125895v3_full, please notify your bug team (lgci.bug.filing@intel.com) 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/Patchwork_125895v3/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 Patchwork_125895v3_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_lmem_swapping@massive:
- shard-dg2: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_lmem_swapping@massive.html
#### Warnings ####
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: [SKIP][2] ([i915#6524] / [i915#6805]) -> [SKIP][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_plane@pixel-format-source-clamping@pipe-a}:
- shard-rkl: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
* {igt@kms_pm_rpm@basic-rte}:
- shard-dg2: [PASS][6] -> [SKIP][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html
Known issues
------------
Here are the changes found in Patchwork_125895v3_full that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- shard-glk: ([PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32]) -> ([PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [FAIL][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57]) ([i915#8293])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk5/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#8411])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#7701])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [INCOMPLETE][60] ([i915#9408])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#8414]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@drm_fdinfo@busy@vcs0.html
* igt@drm_fdinfo@isolation@bcs0:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#8414]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@drm_fdinfo@isolation@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][63] ([i915#7742])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#8414]) +21 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@fbdev@unaligned-read:
- shard-rkl: [PASS][65] -> [SKIP][66] ([i915#2582])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@fbdev@unaligned-read.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@fbdev@unaligned-read.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4873])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_caching@read-writes.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#7697])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [INCOMPLETE][69] ([i915#9364])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#6335])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][71] -> [FAIL][72] ([i915#6268])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg2: NOTRUN -> [SKIP][73] ([fdo#109314])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_ctx_param@set-priority-not-supported.html
- shard-rkl: NOTRUN -> [SKIP][74] ([fdo#109314])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8555])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#8555])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#8555])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#280])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#280])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#280])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-suspend:
- shard-dg2: NOTRUN -> [INCOMPLETE][81] ([i915#7892])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-dg1: [PASS][82] -> [FAIL][83] ([i915#5784])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-17/igt@gem_eio@kms.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-16/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4812])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4771])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4812]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#4525])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-apl: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#6334])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg2: NOTRUN -> [FAIL][89] ([i915#9606])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: NOTRUN -> [FAIL][90] ([i915#2842]) +4 other tests fail
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3711])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#3539])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#3539] / [i915#4852]) +6 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][94] ([fdo#109283] / [i915#5107])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][95] ([fdo#112283]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3281]) +7 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#3281]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#3281]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: [PASS][99] -> [SKIP][100] ([i915#3281]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#3281]) +13 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4537] / [i915#4812])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#4537] / [i915#4812])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-rkl: NOTRUN -> [ABORT][104] ([i915#7975] / [i915#8213])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#4860]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#4860]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4613]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random:
- shard-apl: NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#4613]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#4613]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#9643])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_lmem_swapping@verify.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#8289])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#284])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#4083]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#4077]) +4 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4077]) +8 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#4077]) +13 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@coherency:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4083]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#4083]) +4 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#3282]) +5 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#3282]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#3282]) +4 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#3282]) +6 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#4270]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#4270]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#4270])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#4270])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#8428]) +5 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-x-tiled:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#768])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#8411])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#4079]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#4079])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#4885])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
- shard-rkl: NOTRUN -> [SKIP][133] ([fdo#109312])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#3297]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#3297] / [i915#4880]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#3297]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen3_render_tiledy_blits:
- shard-dg2: NOTRUN -> [SKIP][137] ([fdo#109289])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gen3_render_tiledy_blits.html
* igt@gen7_exec_parse@chained-batch:
- shard-dg1: NOTRUN -> [SKIP][138] ([fdo#109289])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gen7_exec_parse@chained-batch.html
* igt@gen7_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][139] ([fdo#109289]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gen7_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@allowed-single:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#2527]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#2856])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#2856]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: [PASS][143] -> [SKIP][144] ([i915#2527])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#2527]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#4881])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_fb_tiling.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#7178])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rpm@gem-execbuf-stress:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#9641])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@i915_pm_rpm@gem-execbuf-stress.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#8925]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_pm_rps@thresholds-idle-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3555] / [i915#8925]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt1.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#8925])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#8925])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#4387])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu: NOTRUN -> [SKIP][154] ([fdo#109303])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-rkl: NOTRUN -> [SKIP][155] ([fdo#109302])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@i915_query@query-topology-unsupported.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#4215] / [i915#5190])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#4212])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#4212])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@crc@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [FAIL][159] ([i915#8247]) +3 other tests fail
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html
* igt@kms_atomic@plane-overlay-legacy:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#1845] / [i915#4098])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_atomic@plane-overlay-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#1769] / [i915#3555])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#4538] / [i915#5286])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#5286]) +4 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#5286])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg2: [PASS][165] -> [SKIP][166] ([fdo#109315]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: NOTRUN -> [FAIL][167] ([i915#5138])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][168] ([fdo#111614] / [i915#3638])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#3638])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][170] ([fdo#111614]) +8 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][171] ([fdo#111614]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#6187]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [PASS][173] -> [FAIL][174] ([i915#3743]) +1 other test fail
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][175] ([fdo#109315] / [i915#5190])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#5190]) +24 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#4538]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#4538] / [i915#5190]) +4 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][179] ([fdo#111615])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][180] ([fdo#111615]) +5 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][181] ([fdo#110723]) +2 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#2705])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3742])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#4087]) +3 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg1: NOTRUN -> [SKIP][185] ([fdo#111827])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-mtlp: NOTRUN -> [SKIP][186] ([fdo#111827]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@degamma:
- shard-rkl: NOTRUN -> [SKIP][187] ([fdo#111827])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color@gamma:
- shard-dg2: NOTRUN -> [SKIP][188] ([fdo#111827])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#7828]) +10 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#7828]) +4 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#7828]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#7828]) +5 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#6944])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#3299])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3299])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#3299])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#7116])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#7118]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#3555]) +6 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#3359]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#8814]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3359]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#3359])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#3359])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1:
- shard-glk: [PASS][205] -> [DMESG-FAIL][206] ([i915#118])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg1: NOTRUN -> [SKIP][207] ([fdo#111767] / [fdo#111825])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][208] ([fdo#111825]) +16 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#4103])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#4103] / [i915#4213] / [i915#5608])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- shard-rkl: [PASS][211] -> [SKIP][212] ([i915#1845] / [i915#4098]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3546]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: NOTRUN -> [SKIP][214] ([fdo#109274] / [i915#5354]) +6 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-apl: NOTRUN -> [SKIP][215] ([fdo#109271] / [fdo#111767]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][216] ([fdo#109274] / [fdo#111767] / [i915#5354])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][217] -> [FAIL][218] ([i915#2346])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][219] -> [FAIL][220] ([i915#2346])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#4103] / [i915#4213])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#9226] / [i915#9261]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#9227])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#8588])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/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][225] ([i915#3804])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#1257])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#8812])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#3840])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][230] ([fdo#109274]) +9 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-snb: NOTRUN -> [SKIP][231] ([fdo#109271]) +7 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-snb4/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3637]) +5 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#8381])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#8381])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][235] ([fdo#111825]) +7 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-suspend@a-dp4:
- shard-dg2: NOTRUN -> [INCOMPLETE][236] ([i915#4839])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@flip-vs-suspend@a-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#2587] / [i915#2672]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#8810])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#2672]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#2672]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][241] ([fdo#109315]) +5 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#2672]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: [PASS][244] -> [SKIP][245] ([i915#1849] / [i915#4098]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#8708]) +8 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#5354]) +43 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][248] ([fdo#109280])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#1825]) +25 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#8708]) +5 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#8708]) +22 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#3023]) +16 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#3458]) +5 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#3458]) +20 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][255] ([fdo#111825] / [i915#1825]) +26 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_hdr@bpc-switch.html
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_hdr@bpc-switch.html
* igt@kms_invalid_mode@bad-vsync-end:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#4098])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_invalid_mode@bad-vsync-end.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#4816])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#6301])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-rkl: NOTRUN -> [SKIP][261] ([fdo#109289])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#2575]) +41 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1:
- shard-apl: NOTRUN -> [FAIL][263] ([i915#7862]) +1 other test fail
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html
* igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#3582]) +3 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8821])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#3555]) +2 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#5176] / [i915#9423]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#5235]) +15 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-19/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#5235]) +2 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/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][270] ([i915#5235]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#5235]) +15 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1:
- shard-apl: NOTRUN -> [SKIP][273] ([fdo#109271]) +98 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#5235]) +8 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#6524] / [i915#6805])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#658])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#658]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-apl: NOTRUN -> [SKIP][278] ([fdo#109271] / [i915#658]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][279] ([fdo#111068] / [i915#658]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#658]) +3 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@cursor_blt:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#1072]) +4 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_psr@cursor_blt.html
* igt@kms_psr@primary_render:
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#1072] / [i915#4078]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_psr@primary_render.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#1072]) +8 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#5461] / [i915#658])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#5461] / [i915#658])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#5289])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#4235])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#3555]) +2 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][289] ([i915#5465]) +1 other test fail
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-snb4/igt@kms_setmode@basic@pipe-a-vga-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#4098]) +2 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8809])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#8623])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][293] -> [FAIL][294] ([i915#9196])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_vblank@wait-forked:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#4098]) +2 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_vblank@wait-forked.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#2437]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@create-destroy-userspace-config:
- shard-dg2: [PASS][297] -> [SKIP][298] ([i915#5608]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#7387])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][300] ([i915#7484])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][301] ([fdo#109289] / [i915#2433])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#2433])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][303] ([i915#4349]) +3 other tests fail
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@faulting-read:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#5608]) +3 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@perf_pmu@faulting-read.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#8516])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][306] ([fdo#109291])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@prime_udl.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#3291] / [i915#3708])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-write-hang:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#3708])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@prime_vgem@fence-write-hang.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted:
- shard-mtlp: NOTRUN -> [FAIL][309] ([i915#9583])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled:
- shard-rkl: NOTRUN -> [FAIL][310] ([i915#9583])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled.html
* igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted:
- shard-apl: NOTRUN -> [FAIL][311] ([i915#9583])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted.html
* igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted:
- shard-dg2: NOTRUN -> [FAIL][312] ([i915#9582])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted.html
* igt@syncobj_timeline@wait-all-for-submit-delayed-submit:
- shard-dg2: [PASS][313] -> [SKIP][314] ([i915#2575]) +26 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
* igt@v3d/v3d_perfmon@get-values-invalid-pointer:
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#2575]) +5 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][316] ([i915#2575]) +8 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@v3d/v3d_wait_bo@bad-bo:
- shard-rkl: NOTRUN -> [SKIP][317] ([fdo#109315]) +8 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@v3d/v3d_wait_bo@bad-bo.html
* igt@vc4/vc4_perfmon@destroy-valid-perfmon:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#7711]) +9 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][319] ([i915#7711]) +6 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
* igt@vc4/vc4_purgeable_bo@mark-willneed:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#7711]) +4 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@vc4/vc4_purgeable_bo@mark-willneed.html
* igt@vc4/vc4_tiling@get-bad-modifier:
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#7711]) +2 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@vc4/vc4_tiling@get-bad-modifier.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][322] ([i915#7742]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@fbdev@pan:
- shard-rkl: [SKIP][324] ([i915#2582]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@fbdev@pan.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@fbdev@pan.html
* igt@gem_ctx_shared@q-smoketest@vcs1:
- shard-dg2: [INCOMPLETE][326] -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-7/igt@gem_ctx_shared@q-smoketest@vcs1.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_ctx_shared@q-smoketest@vcs1.html
* igt@gem_eio@wait-wedge-10ms:
- shard-mtlp: [ABORT][328] ([i915#9414]) -> [PASS][329] +2 other tests pass
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-8/igt@gem_eio@wait-wedge-10ms.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@gem_eio@wait-wedge-10ms.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-rkl: [SKIP][330] ([i915#9591]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_endless@dispatch@bcs0.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [FAIL][332] ([i915#2842]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][334] ([i915#2842]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [FAIL][336] ([i915#2842]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-mtlp: [DMESG-FAIL][338] ([i915#8962]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-1/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-rkl: [SKIP][340] ([i915#3281]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-tglu: [ABORT][342] ([i915#7975] / [i915#8213]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-apl: [INCOMPLETE][344] -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl6/igt@gem_mmap_gtt@cpuset-medium-copy.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl7/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: [SKIP][346] ([i915#3282]) -> [PASS][347] +3 other tests pass
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: [SKIP][348] ([i915#8411]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: [SKIP][350] ([i915#2527]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gen9_exec_parse@bb-chained.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][352] ([i915#3743]) -> [PASS][353] +2 other tests pass
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][354] ([i915#1845] / [i915#4098]) -> [PASS][355] +2 other tests pass
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* {igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs}:
- shard-rkl: [SKIP][356] ([i915#4098]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][358] ([i915#2346]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][360] ([i915#79]) -> [PASS][361]
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][362] ([i915#1849] / [i915#4098]) -> [PASS][363] +3 other tests pass
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* {igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait}:
- shard-rkl: [SKIP][364] ([i915#9519]) -> [PASS][365] +1 other test pass
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-mtlp: [FAIL][366] ([i915#9196]) -> [PASS][367] +1 other test pass
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [FAIL][368] ([i915#9196]) -> [PASS][369]
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][370] ([i915#4349]) -> [PASS][371] +1 other test pass
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-mtlp: [SKIP][372] ([i915#9432]) -> [PASS][373]
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@frequency@gt0.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-3/igt@perf_pmu@frequency@gt0.html
- shard-dg1: [SKIP][374] ([i915#9432]) -> [PASS][375]
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
#### Warnings ####
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-dg2: [SKIP][376] ([i915#3281]) -> [SKIP][377] ([i915#2575])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_bad_reloc@negative-reloc-lut.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_busy@semaphore:
- shard-dg2: [SKIP][378] ([i915#3936]) -> [SKIP][379] ([i915#2575])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_busy@semaphore.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_busy@semaphore.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: [SKIP][380] ([i915#4771]) -> [SKIP][381] ([i915#2575])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: [SKIP][382] ([i915#4036]) -> [SKIP][383] ([i915#2575])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_mmap_gtt@ptrace:
- shard-dg2: [SKIP][384] ([i915#4077]) -> [SKIP][385] ([i915#2575]) +1 other test skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
* igt@gem_mmap_wc@write-gtt-read-wc:
- shard-dg2: [SKIP][386] ([i915#4083]) -> [SKIP][387] ([i915#2575])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg2: [SKIP][388] ([i915#3282]) -> [SKIP][389] ([i915#2575])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg2: [SKIP][390] ([i915#4270]) -> [SKIP][391] ([i915#2575])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: [SKIP][392] ([i915#5190]) -> [SKIP][393] ([i915#2575] / [i915#5190])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gen3_mixed_blits:
- shard-dg2: [SKIP][394] ([fdo#109289]) -> [SKIP][395] ([i915#2575])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gen3_mixed_blits.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gen3_mixed_blits.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][396] ([i915#1845] / [i915#4098]) -> [SKIP][397] ([i915#1769] / [i915#3555])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][398] ([i915#4098]) -> [SKIP][399] ([i915#5286]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][400] ([i915#5286]) -> [SKIP][401] ([i915#4098])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][402] ([i915#1845] / [i915#4098]) -> [SKIP][403] ([fdo#111614] / [i915#3638])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg2: [SKIP][404] ([fdo#111614]) -> [SKIP][405] ([fdo#109315])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2: [SKIP][406] ([i915#5190]) -> [SKIP][407] ([fdo#109315] / [i915#5190])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: [SKIP][408] ([fdo#110723]) -> [SKIP][409] ([i915#1845] / [i915#4098])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][410] ([i915#1845] / [i915#4098]) -> [SKIP][411] ([fdo#110723]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2: [SKIP][412] ([i915#4538] / [i915#5190]) -> [SKIP][413] ([fdo#109315] / [i915#5190]) +1 other test skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: [SKIP][414] ([fdo#111615]) -> [SKIP][415] ([i915#1845] / [i915#4098])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg2: [SKIP][416] ([i915#7828]) -> [SKIP][417] ([i915#2575]) +1 other test skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: [SKIP][418] ([i915#3116]) -> [SKIP][419] ([i915#1845] / [i915#4098])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][420] ([i915#7118]) -> [SKIP][421] ([i915#1845] / [i915#4098])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_content_protection@srm.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: [SKIP][422] ([i915#4098]) -> [SKIP][423] ([i915#3555]) +1 other test skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: [SKIP][424] ([i915#3359]) -> [SKIP][425] ([i915#4098])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x170.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][426] ([fdo#111825]) -> [SKIP][427] ([i915#1845] / [i915#4098]) +2 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2: [SKIP][428] ([fdo#109274] / [i915#5354]) -> [SKIP][429] ([i915#2575])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][430] ([i915#3555] / [i915#3840]) -> [SKIP][431] ([i915#4098])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][432] ([fdo#110189] / [i915#3955]) -> [SKIP][433] ([i915#3955])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_fence_pin_leak:
- shard-dg2: [SKIP][434] ([i915#4881]) -> [SKIP][435] ([i915#2575])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_fence_pin_leak.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: [SKIP][436] ([fdo#109274]) -> [SKIP][437] ([i915#2575]) +1 other test skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-rkl: [SKIP][438] ([fdo#111825] / [i915#1825]) -> [SKIP][439] ([i915#1849] / [i915#4098]) +6 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][440] ([i915#1849] / [i915#4098]) -> [SKIP][441] ([fdo#111825] / [i915#1825]) +7 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][442] ([i915#5354]) -> [SKIP][443] ([fdo#109315]) +4 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: [SKIP][444] ([i915#3023]) -> [SKIP][445] ([i915#1849] / [i915#4098]) +5 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/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][446] ([i915#1849] / [i915#4098]) -> [SKIP][447] ([fdo#111825])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][448] ([i915#8708]) -> [SKIP][449] ([fdo#109315]) +5 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu:
- shard-rkl: [SKIP][450] ([i915#1849] / [i915#4098]) -> [SKIP][451] ([i915#3023]) +3 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [SKIP][452] ([i915#3458]) -> [SKIP][453] ([fdo#109315]) +4 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][454] ([i915#4070] / [i915#4816]) -> [SKIP][455] ([i915#4816])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: [SKIP][456] ([i915#6301]) -> [SKIP][457] ([i915#2575])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/i
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/index.html
[-- Attachment #2: Type: text/html, Size: 111299 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
2023-11-02 11:59 [Intel-gfx] [PATCH] drm/i915/dp_mst: Disable DSC on ICL+ MST outputs Imre Deak
` (10 preceding siblings ...)
2023-11-07 17:57 ` Patchwork
@ 2023-11-07 18:12 ` Patchwork
11 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-07 18:12 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100282 bytes --]
== Series Details ==
Series: drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
URL : https://patchwork.freedesktop.org/series/125895/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13835_full -> Patchwork_125895v3_full
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with Patchwork_125895v3_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_125895v3_full, please notify your bug team (lgci.bug.filing@intel.com) 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/Patchwork_125895v3/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 Patchwork_125895v3_full:
### IGT changes ###
#### Warnings ####
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: [SKIP][1] ([i915#6524] / [i915#6805]) -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_plane@pixel-format-source-clamping@pipe-a}:
- shard-rkl: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
* {igt@kms_pm_rpm@basic-rte}:
- shard-dg2: [PASS][5] -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html
Known issues
------------
Here are the changes found in Patchwork_125895v3_full that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- shard-glk: ([PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31]) -> ([PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [FAIL][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56]) ([i915#8293])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk5/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#8411])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#7701])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [INCOMPLETE][59] ([i915#9408])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8414]) +5 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@drm_fdinfo@busy@vcs0.html
* igt@drm_fdinfo@isolation@bcs0:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#8414]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@drm_fdinfo@isolation@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][62] ([i915#7742])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#8414]) +21 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@fbdev@unaligned-read:
- shard-rkl: [PASS][64] -> [SKIP][65] ([i915#2582])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@fbdev@unaligned-read.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@fbdev@unaligned-read.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4873])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_caching@read-writes.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#7697])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [INCOMPLETE][68] ([i915#9364])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#6335])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][70] -> [FAIL][71] ([i915#6268])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg2: NOTRUN -> [SKIP][72] ([fdo#109314])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_ctx_param@set-priority-not-supported.html
- shard-rkl: NOTRUN -> [SKIP][73] ([fdo#109314])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8555])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#8555])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#8555])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#280])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#280])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#280])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-suspend:
- shard-dg2: NOTRUN -> [INCOMPLETE][80] ([i915#7892])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-dg1: [PASS][81] -> [FAIL][82] ([i915#5784])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-17/igt@gem_eio@kms.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-16/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4812])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4771])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4812]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#4525])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-apl: NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#6334])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg2: NOTRUN -> [FAIL][88] ([i915#9606])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: NOTRUN -> [FAIL][89] ([i915#2842]) +4 other tests fail
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3711])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#3539])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#3539] / [i915#4852]) +6 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][93] ([fdo#109283] / [i915#5107])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][94] ([fdo#112283]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#3281]) +7 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#3281]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#3281]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: [PASS][98] -> [SKIP][99] ([i915#3281]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#3281]) +13 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#4537] / [i915#4812])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#4537] / [i915#4812])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-rkl: NOTRUN -> [ABORT][103] ([i915#7975] / [i915#8213])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#4860]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#4860]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#4613]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random:
- shard-apl: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#4613]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#4613]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#9643]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_lmem_swapping@verify.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#8289])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#284])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#4083]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#4077]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4077]) +8 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4077]) +13 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@coherency:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#4083]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4083]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#3282]) +5 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#3282]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#3282]) +4 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#3282]) +6 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4270]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#4270]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4270])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#4270])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#8428]) +5 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-x-tiled:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#768])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#8411])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4079]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4079])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4885])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
- shard-rkl: NOTRUN -> [SKIP][132] ([fdo#109312])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#3297]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#3297] / [i915#4880]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#3297]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen3_render_tiledy_blits:
- shard-dg2: NOTRUN -> [SKIP][136] ([fdo#109289])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gen3_render_tiledy_blits.html
* igt@gen7_exec_parse@chained-batch:
- shard-dg1: NOTRUN -> [SKIP][137] ([fdo#109289])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gen7_exec_parse@chained-batch.html
* igt@gen7_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][138] ([fdo#109289]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gen7_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@allowed-single:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#2527]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#2856])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#2856]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: [PASS][142] -> [SKIP][143] ([i915#2527])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#2527]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#4881])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_fb_tiling.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#7178])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rpm@gem-execbuf-stress:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#9641])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@i915_pm_rpm@gem-execbuf-stress.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8925]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_pm_rps@thresholds-idle-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#8925]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt1.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#8925])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#8925])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#4387])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu: NOTRUN -> [SKIP][153] ([fdo#109303])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-rkl: NOTRUN -> [SKIP][154] ([fdo#109302])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@i915_query@query-topology-unsupported.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#4215] / [i915#5190])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#4212])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#4212])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@crc@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [FAIL][158] ([i915#8247]) +3 other tests fail
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html
* igt@kms_atomic@plane-overlay-legacy:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#1845] / [i915#4098])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_atomic@plane-overlay-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#1769] / [i915#3555])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#4538] / [i915#5286])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#5286]) +4 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#5286])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg2: [PASS][164] -> [SKIP][165] ([fdo#109315]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: NOTRUN -> [FAIL][166] ([i915#5138])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][167] ([fdo#111614] / [i915#3638])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#3638])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][169] ([fdo#111614]) +8 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][170] ([fdo#111614]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#6187]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [PASS][172] -> [FAIL][173] ([i915#3743]) +1 other test fail
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][174] ([fdo#109315] / [i915#5190])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#5190]) +24 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#4538]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#4538] / [i915#5190]) +4 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][178] ([fdo#111615])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][179] ([fdo#111615]) +5 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][180] ([fdo#110723]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#2705])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3742])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#4087]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg1: NOTRUN -> [SKIP][184] ([fdo#111827])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-mtlp: NOTRUN -> [SKIP][185] ([fdo#111827]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@degamma:
- shard-rkl: NOTRUN -> [SKIP][186] ([fdo#111827])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color@gamma:
- shard-dg2: NOTRUN -> [SKIP][187] ([fdo#111827])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#7828]) +10 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#7828]) +4 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#7828]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#7828]) +5 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#6944])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#3299])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3299])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#3299])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#7116])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#7118]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555]) +6 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#3359]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8814]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3359]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#3359])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#3359])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1:
- shard-glk: [PASS][204] -> [DMESG-FAIL][205] ([i915#118])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg1: NOTRUN -> [SKIP][206] ([fdo#111767] / [fdo#111825])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][207] ([fdo#111825]) +16 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#4103])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#4103] / [i915#4213] / [i915#5608])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- shard-rkl: [PASS][210] -> [SKIP][211] ([i915#1845] / [i915#4098]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3546]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: NOTRUN -> [SKIP][213] ([fdo#109274] / [i915#5354]) +6 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-apl: NOTRUN -> [SKIP][214] ([fdo#109271] / [fdo#111767]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][215] ([fdo#109274] / [fdo#111767] / [i915#5354])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][216] -> [FAIL][217] ([i915#2346])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][218] -> [FAIL][219] ([i915#2346])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#4103] / [i915#4213])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9226] / [i915#9261]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#9227])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#8588])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/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][224] ([i915#3804])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#1257])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#8812])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][229] ([fdo#109274]) +9 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-snb: NOTRUN -> [SKIP][230] ([fdo#109271]) +7 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-snb4/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3637]) +5 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#8381])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#8381])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][234] ([fdo#111825]) +7 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-suspend@a-dp4:
- shard-dg2: NOTRUN -> [INCOMPLETE][235] ([i915#4839])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@flip-vs-suspend@a-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#2587] / [i915#2672]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#8810])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#2672]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2672]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][240] ([fdo#109315]) +5 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#3555])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#2672]) +4 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: [PASS][243] -> [SKIP][244] ([i915#1849] / [i915#4098]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#8708]) +8 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#5354]) +43 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][247] ([fdo#109280])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#1825]) +25 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#8708]) +5 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#8708]) +22 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#3023]) +16 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#3458]) +5 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#3458]) +20 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][254] ([fdo#111825] / [i915#1825]) +26 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_hdr@bpc-switch.html
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_hdr@bpc-switch.html
* igt@kms_invalid_mode@bad-vsync-end:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#4098])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_invalid_mode@bad-vsync-end.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#4816])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#6301])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-rkl: NOTRUN -> [SKIP][260] ([fdo#109289])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#2575]) +41 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1:
- shard-apl: NOTRUN -> [FAIL][262] ([i915#7862]) +1 other test fail
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html
* igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#3582]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8821])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#3555]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#5176] / [i915#9423]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#5235]) +15 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-19/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#5235]) +2 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/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][269] ([i915#5235]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#5235]) +15 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1:
- shard-apl: NOTRUN -> [SKIP][272] ([fdo#109271]) +98 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#5235]) +8 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#6524] / [i915#6805])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#658])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#658]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-apl: NOTRUN -> [SKIP][277] ([fdo#109271] / [i915#658]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][278] ([fdo#111068] / [i915#658]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#658]) +3 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@cursor_blt:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#1072]) +4 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_psr@cursor_blt.html
* igt@kms_psr@primary_render:
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#1072] / [i915#4078]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_psr@primary_render.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#1072]) +8 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#5461] / [i915#658])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#5461] / [i915#658])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#5289])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#4235])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#3555]) +2 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][288] ([i915#5465]) +1 other test fail
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-snb4/igt@kms_setmode@basic@pipe-a-vga-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#4098]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8809])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#8623])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][292] -> [FAIL][293] ([i915#9196])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_vblank@wait-forked:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#4098]) +2 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_vblank@wait-forked.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#2437]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@create-destroy-userspace-config:
- shard-dg2: [PASS][296] -> [SKIP][297] ([i915#5608]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#7387])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][299] ([i915#7484])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][300] ([fdo#109289] / [i915#2433])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#2433])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][302] ([i915#4349]) +3 other tests fail
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@faulting-read:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#5608]) +3 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@perf_pmu@faulting-read.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#8516])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][305] ([fdo#109291])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@prime_udl.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#3291] / [i915#3708])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-write-hang:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#3708])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@prime_vgem@fence-write-hang.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted:
- shard-mtlp: NOTRUN -> [FAIL][308] ([i915#9583])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled:
- shard-rkl: NOTRUN -> [FAIL][309] ([i915#9583])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled.html
* igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted:
- shard-apl: NOTRUN -> [FAIL][310] ([i915#9583])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted.html
* igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted:
- shard-dg2: NOTRUN -> [FAIL][311] ([i915#9582])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted.html
* igt@syncobj_timeline@wait-all-for-submit-delayed-submit:
- shard-dg2: [PASS][312] -> [SKIP][313] ([i915#2575]) +26 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
* igt@v3d/v3d_perfmon@get-values-invalid-pointer:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#2575]) +5 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#2575]) +8 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@v3d/v3d_wait_bo@bad-bo:
- shard-rkl: NOTRUN -> [SKIP][316] ([fdo#109315]) +8 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@v3d/v3d_wait_bo@bad-bo.html
* igt@vc4/vc4_perfmon@destroy-valid-perfmon:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#7711]) +9 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#7711]) +6 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
* igt@vc4/vc4_purgeable_bo@mark-willneed:
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#7711]) +4 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@vc4/vc4_purgeable_bo@mark-willneed.html
* igt@vc4/vc4_tiling@get-bad-modifier:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#7711]) +2 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@vc4/vc4_tiling@get-bad-modifier.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][321] ([i915#7742]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@fbdev@pan:
- shard-rkl: [SKIP][323] ([i915#2582]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@fbdev@pan.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@fbdev@pan.html
* igt@gem_ctx_shared@q-smoketest@vcs1:
- shard-dg2: [INCOMPLETE][325] -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-7/igt@gem_ctx_shared@q-smoketest@vcs1.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_ctx_shared@q-smoketest@vcs1.html
* igt@gem_eio@wait-wedge-10ms:
- shard-mtlp: [ABORT][327] ([i915#9414]) -> [PASS][328] +2 other tests pass
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-8/igt@gem_eio@wait-wedge-10ms.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@gem_eio@wait-wedge-10ms.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-rkl: [SKIP][329] ([i915#9591]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_endless@dispatch@bcs0.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [FAIL][331] ([i915#2842]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][333] ([i915#2842]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [FAIL][335] ([i915#2842]) -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-mtlp: [DMESG-FAIL][337] ([i915#8962]) -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-1/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-rkl: [SKIP][339] ([i915#3281]) -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-tglu: [ABORT][341] ([i915#7975] / [i915#8213]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-apl: [INCOMPLETE][343] -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl6/igt@gem_mmap_gtt@cpuset-medium-copy.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl7/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: [SKIP][345] ([i915#3282]) -> [PASS][346] +3 other tests pass
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: [SKIP][347] ([i915#8411]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: [SKIP][349] ([i915#2527]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gen9_exec_parse@bb-chained.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][351] ([i915#3743]) -> [PASS][352] +2 other tests pass
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][353] ([i915#1845] / [i915#4098]) -> [PASS][354] +2 other tests pass
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* {igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs}:
- shard-rkl: [SKIP][355] ([i915#4098]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][357] ([i915#2346]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][359] ([i915#79]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][361] ([i915#1849] / [i915#4098]) -> [PASS][362] +3 other tests pass
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* {igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait}:
- shard-rkl: [SKIP][363] ([i915#9519]) -> [PASS][364] +1 other test pass
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-mtlp: [FAIL][365] ([i915#9196]) -> [PASS][366] +1 other test pass
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [FAIL][367] ([i915#9196]) -> [PASS][368]
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][369] ([i915#4349]) -> [PASS][370] +1 other test pass
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-mtlp: [SKIP][371] ([i915#9432]) -> [PASS][372]
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@frequency@gt0.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-3/igt@perf_pmu@frequency@gt0.html
- shard-dg1: [SKIP][373] ([i915#9432]) -> [PASS][374]
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
#### Warnings ####
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-dg2: [SKIP][375] ([i915#3281]) -> [SKIP][376] ([i915#2575])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_bad_reloc@negative-reloc-lut.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_busy@semaphore:
- shard-dg2: [SKIP][377] ([i915#3936]) -> [SKIP][378] ([i915#2575])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_busy@semaphore.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_busy@semaphore.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: [SKIP][379] ([i915#4771]) -> [SKIP][380] ([i915#2575])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: [SKIP][381] ([i915#4036]) -> [SKIP][382] ([i915#2575])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_mmap_gtt@ptrace:
- shard-dg2: [SKIP][383] ([i915#4077]) -> [SKIP][384] ([i915#2575]) +1 other test skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
* igt@gem_mmap_wc@write-gtt-read-wc:
- shard-dg2: [SKIP][385] ([i915#4083]) -> [SKIP][386] ([i915#2575])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg2: [SKIP][387] ([i915#3282]) -> [SKIP][388] ([i915#2575])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg2: [SKIP][389] ([i915#4270]) -> [SKIP][390] ([i915#2575])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: [SKIP][391] ([i915#5190]) -> [SKIP][392] ([i915#2575] / [i915#5190])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gen3_mixed_blits:
- shard-dg2: [SKIP][393] ([fdo#109289]) -> [SKIP][394] ([i915#2575])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gen3_mixed_blits.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gen3_mixed_blits.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][395] ([i915#1845] / [i915#4098]) -> [SKIP][396] ([i915#1769] / [i915#3555])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][397] ([i915#4098]) -> [SKIP][398] ([i915#5286]) +1 other test skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][399] ([i915#5286]) -> [SKIP][400] ([i915#4098])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][401] ([i915#1845] / [i915#4098]) -> [SKIP][402] ([fdo#111614] / [i915#3638])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg2: [SKIP][403] ([fdo#111614]) -> [SKIP][404] ([fdo#109315])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2: [SKIP][405] ([i915#5190]) -> [SKIP][406] ([fdo#109315] / [i915#5190])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: [SKIP][407] ([fdo#110723]) -> [SKIP][408] ([i915#1845] / [i915#4098])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][409] ([i915#1845] / [i915#4098]) -> [SKIP][410] ([fdo#110723]) +1 other test skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2: [SKIP][411] ([i915#4538] / [i915#5190]) -> [SKIP][412] ([fdo#109315] / [i915#5190]) +1 other test skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: [SKIP][413] ([fdo#111615]) -> [SKIP][414] ([i915#1845] / [i915#4098])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg2: [SKIP][415] ([i915#7828]) -> [SKIP][416] ([i915#2575]) +1 other test skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: [SKIP][417] ([i915#3116]) -> [SKIP][418] ([i915#1845] / [i915#4098])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][419] ([i915#7118]) -> [SKIP][420] ([i915#1845] / [i915#4098])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_content_protection@srm.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: [SKIP][421] ([i915#4098]) -> [SKIP][422] ([i915#3555]) +1 other test skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: [SKIP][423] ([i915#3359]) -> [SKIP][424] ([i915#4098])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x170.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][425] ([fdo#111825]) -> [SKIP][426] ([i915#1845] / [i915#4098]) +2 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2: [SKIP][427] ([fdo#109274] / [i915#5354]) -> [SKIP][428] ([i915#2575])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][429] ([i915#3555] / [i915#3840]) -> [SKIP][430] ([i915#4098])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][431] ([fdo#110189] / [i915#3955]) -> [SKIP][432] ([i915#3955])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_fence_pin_leak:
- shard-dg2: [SKIP][433] ([i915#4881]) -> [SKIP][434] ([i915#2575])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_fence_pin_leak.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: [SKIP][435] ([fdo#109274]) -> [SKIP][436] ([i915#2575]) +1 other test skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-rkl: [SKIP][437] ([fdo#111825] / [i915#1825]) -> [SKIP][438] ([i915#1849] / [i915#4098]) +6 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][439] ([i915#1849] / [i915#4098]) -> [SKIP][440] ([fdo#111825] / [i915#1825]) +7 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][441] ([i915#5354]) -> [SKIP][442] ([fdo#109315]) +4 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: [SKIP][443] ([i915#3023]) -> [SKIP][444] ([i915#1849] / [i915#4098]) +5 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/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][445] ([i915#1849] / [i915#4098]) -> [SKIP][446] ([fdo#111825])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][447] ([i915#8708]) -> [SKIP][448] ([fdo#109315]) +5 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu:
- shard-rkl: [SKIP][449] ([i915#1849] / [i915#4098]) -> [SKIP][450] ([i915#3023]) +3 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [SKIP][451] ([i915#3458]) -> [SKIP][452] ([fdo#109315]) +4 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][453] ([i915#4070] / [i915#4816]) -> [SKIP][454] ([i915#4816])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: [SKIP][455] ([i915#6301]) -> [SKIP][456] ([i915#2575])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_psr@psr2_cursor_plane_onoff:
- shard-dg2: [SKIP][457] ([i915#1072]) -> [SKIP][458] ([fdo#109315])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/sh
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/index.html
[-- Attachment #2: Type: text/html, Size: 111301 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
2023-11-06 11:45 ` Imre Deak
@ 2023-11-07 18:16 ` Illipilli, TejasreeX
0 siblings, 0 replies; 15+ messages in thread
From: Illipilli, TejasreeX @ 2023-11-07 18:16 UTC (permalink / raw)
To: Deak, Imre, intel-gfx@lists.freedesktop.org,
Ville Syrjälä
Cc: LGCI Bug Filing
Hi ,
https://patchwork.freedesktop.org/series/125895/ - Re-reported
Thanks,
Tejasree
-----Original Message-----
From: Deak, Imre <imre.deak@intel.com>
Sent: Monday, November 6, 2023 5:16 PM
To: intel-gfx@lists.freedesktop.org; Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: LGCI Bug Filing <lgci.bug.filing@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
On Sat, Nov 04, 2023 at 01:50:20PM +0000, Patchwork wrote:
> == Series Details ==
>
> Series: drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3)
> URL : https://patchwork.freedesktop.org/series/125895/
> State : failure
Thanks for the review, pushed to -din with the commit log fixed.
The failures are unrelated, see below.
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_13835_full -> Patchwork_125895v3_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with Patchwork_125895v3_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in Patchwork_125895v3_full, please notify your bug team (lgci.bug.filing@intel.com) 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/Patchwork_125895v3/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 Patchwork_125895v3_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@i915_pm_rpm@gem-execbuf-stress:
> - shard-dg2: NOTRUN -> [SKIP][1] +2 other tests skip
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@i915_pm_rpm@gem-execbuf-stress.html
Looks like a config issue, there's no graphics enumerated. Unrelated,
since the change only affects ICL hosts with DP MST sinks connected.
> * igt@kms_flip@flip-vs-suspend@a-dp4:
> - shard-dg2: NOTRUN -> [INCOMPLETE][2]
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@flip-vs-suspend@a-dp4.html
Unrelated, since the change only affects ICL hosts with DP MST sinks
connected.
> #### Warnings ####
>
> * igt@kms_prime@basic-crc-hybrid:
> - shard-dg2: [SKIP][3] ([i915#6524] / [i915#6805]) -> [SKIP][4]
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
>
>
> #### Suppressed ####
>
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
>
> * {igt@kms_plane@pixel-format-source-clamping@pipe-a}:
> - shard-rkl: [PASS][5] -> [INCOMPLETE][6]
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
>
> * {igt@kms_pm_rpm@basic-rte}:
> - shard-dg2: [PASS][7] -> [SKIP][8]
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html
>
>
> Known issues
> ------------
>
> Here are the changes found in Patchwork_125895v3_full that come from known issues:
>
> ### CI changes ###
>
> #### Issues hit ####
>
> * boot:
> - shard-glk: ([PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33]) -> ([PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [FAIL][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58]) ([i915#8293])
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/boot.html
> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/boot.html
> [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
> [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk6/boot.html
> [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
> [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
> [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
> [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk5/boot.html
> [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
> [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
> [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
> [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/boot.html
> [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
> [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
> [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/boot.html
> [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
> [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
> [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
> [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/boot.html
> [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
> [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
> [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
> [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk2/boot.html
> [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
> [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
> [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
> [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk3/boot.html
> [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
> [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
> [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
> [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/boot.html
> [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk5/boot.html
> [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
> [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
> [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
> [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/boot.html
> [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
> [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
> [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
> [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/boot.html
> [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
> [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
> [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
> [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/boot.html
>
>
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@api_intel_bb@blit-reloc-keep-cache:
> - shard-dg2: NOTRUN -> [SKIP][59] ([i915#8411])
> [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@api_intel_bb@blit-reloc-keep-cache.html
>
> * igt@device_reset@cold-reset-bound:
> - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#7701])
> [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@device_reset@cold-reset-bound.html
>
> * igt@device_reset@unbind-reset-rebind:
> - shard-dg1: NOTRUN -> [INCOMPLETE][61] ([i915#9408])
> [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
>
> * igt@drm_fdinfo@busy@vcs0:
> - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8414]) +5 other tests skip
> [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@drm_fdinfo@busy@vcs0.html
>
> * igt@drm_fdinfo@isolation@bcs0:
> - shard-dg1: NOTRUN -> [SKIP][63] ([i915#8414]) +4 other tests skip
> [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@drm_fdinfo@isolation@bcs0.html
>
> * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
> - shard-rkl: NOTRUN -> [FAIL][64] ([i915#7742])
> [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
>
> * igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
> - shard-dg2: NOTRUN -> [SKIP][65] ([i915#8414]) +21 other tests skip
> [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
>
> * igt@fbdev@unaligned-read:
> - shard-rkl: [PASS][66] -> [SKIP][67] ([i915#2582])
> [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@fbdev@unaligned-read.html
> [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@fbdev@unaligned-read.html
>
> * igt@gem_caching@read-writes:
> - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4873])
> [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_caching@read-writes.html
>
> * igt@gem_close_race@multigpu-basic-process:
> - shard-rkl: NOTRUN -> [SKIP][69] ([i915#7697])
> [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html
>
> * igt@gem_create@create-ext-cpu-access-big:
> - shard-dg2: NOTRUN -> [INCOMPLETE][70] ([i915#9364])
> [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
>
> * igt@gem_create@create-ext-cpu-access-sanity-check:
> - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#6335])
> [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-sanity-check.html
>
> * igt@gem_ctx_exec@basic-nohangcheck:
> - shard-tglu: [PASS][72] -> [FAIL][73] ([i915#6268])
> [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
> [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
>
> * igt@gem_ctx_param@set-priority-not-supported:
> - shard-dg2: NOTRUN -> [SKIP][74] ([fdo#109314])
> [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_ctx_param@set-priority-not-supported.html
> - shard-rkl: NOTRUN -> [SKIP][75] ([fdo#109314])
> [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_ctx_param@set-priority-not-supported.html
>
> * igt@gem_ctx_persistence@hang:
> - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8555])
> [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_ctx_persistence@hang.html
>
> * igt@gem_ctx_persistence@heartbeat-close:
> - shard-dg2: NOTRUN -> [SKIP][77] ([i915#8555])
> [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-close.html
>
> * igt@gem_ctx_persistence@heartbeat-hostile:
> - shard-dg1: NOTRUN -> [SKIP][78] ([i915#8555])
> [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html
>
> * igt@gem_ctx_sseu@engines:
> - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#280])
> [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_ctx_sseu@engines.html
>
> * igt@gem_ctx_sseu@invalid-sseu:
> - shard-dg2: NOTRUN -> [SKIP][80] ([i915#280])
> [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_ctx_sseu@invalid-sseu.html
>
> * igt@gem_ctx_sseu@mmap-args:
> - shard-dg1: NOTRUN -> [SKIP][81] ([i915#280])
> [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_ctx_sseu@mmap-args.html
>
> * igt@gem_eio@in-flight-suspend:
> - shard-dg2: NOTRUN -> [INCOMPLETE][82] ([i915#7892])
> [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_eio@in-flight-suspend.html
>
> * igt@gem_eio@kms:
> - shard-dg1: [PASS][83] -> [FAIL][84] ([i915#5784])
> [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-17/igt@gem_eio@kms.html
> [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-16/igt@gem_eio@kms.html
>
> * igt@gem_exec_balancer@bonded-false-hang:
> - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4812])
> [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_exec_balancer@bonded-false-hang.html
>
> * igt@gem_exec_balancer@bonded-sync:
> - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4771])
> [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html
>
> * igt@gem_exec_balancer@bonded-true-hang:
> - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4812]) +1 other test skip
> [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html
>
> * igt@gem_exec_balancer@parallel-contexts:
> - shard-rkl: NOTRUN -> [SKIP][88] ([i915#4525])
> [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html
>
> * igt@gem_exec_capture@capture-invisible@smem0:
> - shard-apl: NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#6334])
> [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@gem_exec_capture@capture-invisible@smem0.html
>
> * igt@gem_exec_capture@many-4k-zero:
> - shard-dg2: NOTRUN -> [FAIL][90] ([i915#9606])
> [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_capture@many-4k-zero.html
>
> * igt@gem_exec_fair@basic-pace@vecs0:
> - shard-rkl: NOTRUN -> [FAIL][91] ([i915#2842]) +4 other tests fail
> [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html
>
> * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
> - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3711])
> [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
>
> * igt@gem_exec_flush@basic-uc-set-default:
> - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3539])
> [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_flush@basic-uc-set-default.html
>
> * igt@gem_exec_flush@basic-wb-pro-default:
> - shard-dg2: NOTRUN -> [SKIP][94] ([i915#3539] / [i915#4852]) +6 other tests skip
> [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_exec_flush@basic-wb-pro-default.html
>
> * igt@gem_exec_params@rsvd2-dirt:
> - shard-dg2: NOTRUN -> [SKIP][95] ([fdo#109283] / [i915#5107])
> [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html
>
> * igt@gem_exec_params@secure-non-master:
> - shard-dg2: NOTRUN -> [SKIP][96] ([fdo#112283]) +1 other test skip
> [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_params@secure-non-master.html
>
> * igt@gem_exec_reloc@basic-cpu-read-noreloc:
> - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#3281]) +7 other tests skip
> [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
>
> * igt@gem_exec_reloc@basic-gtt-wc-active:
> - shard-rkl: NOTRUN -> [SKIP][98] ([i915#3281]) +2 other tests skip
> [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-active.html
>
> * igt@gem_exec_reloc@basic-wc-gtt-noreloc:
> - shard-dg1: NOTRUN -> [SKIP][99] ([i915#3281]) +3 other tests skip
> [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
>
> * igt@gem_exec_reloc@basic-write-read-active:
> - shard-rkl: [PASS][100] -> [SKIP][101] ([i915#3281]) +1 other test skip
> [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html
> [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-active.html
>
> * igt@gem_exec_reloc@basic-write-wc-noreloc:
> - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3281]) +13 other tests skip
> [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html
>
> * igt@gem_exec_schedule@preempt-queue:
> - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4537] / [i915#4812])
> [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue.html
>
> * igt@gem_exec_schedule@preempt-queue-chain:
> - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4537] / [i915#4812])
> [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html
>
> * igt@gem_exec_suspend@basic-s4-devices@smem:
> - shard-rkl: NOTRUN -> [ABORT][105] ([i915#7975] / [i915#8213])
> [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices@smem.html
>
> * igt@gem_fence_thrash@bo-write-verify-none:
> - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#4860]) +1 other test skip
> [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-none.html
>
> * igt@gem_fenced_exec_thrash@2-spare-fences:
> - shard-dg2: NOTRUN -> [SKIP][107] ([i915#4860]) +1 other test skip
> [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_fenced_exec_thrash@2-spare-fences.html
>
> * igt@gem_lmem_swapping@basic:
> - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#4613]) +1 other test skip
> [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_lmem_swapping@basic.html
>
> * igt@gem_lmem_swapping@parallel-random:
> - shard-apl: NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#4613]) +3 other tests skip
> [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@gem_lmem_swapping@parallel-random.html
>
> * igt@gem_lmem_swapping@parallel-random-verify-ccs:
> - shard-rkl: NOTRUN -> [SKIP][110] ([i915#4613]) +2 other tests skip
> [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
>
> * igt@gem_media_fill@media-fill:
> - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#8289])
> [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_media_fill@media-fill.html
>
> * igt@gem_media_vme:
> - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#284])
> [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_media_vme.html
>
> * igt@gem_mmap@bad-object:
> - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#4083]) +3 other tests skip
> [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_mmap@bad-object.html
>
> * igt@gem_mmap_gtt@bad-object:
> - shard-dg1: NOTRUN -> [SKIP][114] ([i915#4077]) +4 other tests skip
> [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_mmap_gtt@bad-object.html
>
> * igt@gem_mmap_gtt@cpuset-medium-copy:
> - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4077]) +8 other tests skip
> [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy.html
>
> * igt@gem_mmap_gtt@zero-extend:
> - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4077]) +13 other tests skip
> [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_mmap_gtt@zero-extend.html
>
> * igt@gem_mmap_wc@coherency:
> - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4083]) +3 other tests skip
> [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_mmap_wc@coherency.html
>
> * igt@gem_mmap_wc@invalid-flags:
> - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4083]) +4 other tests skip
> [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@gem_mmap_wc@invalid-flags.html
>
> * igt@gem_partial_pwrite_pread@reads:
> - shard-dg2: NOTRUN -> [SKIP][119] ([i915#3282]) +5 other tests skip
> [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html
>
> * igt@gem_partial_pwrite_pread@reads-display:
> - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#3282]) +3 other tests skip
> [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_partial_pwrite_pread@reads-display.html
>
> * igt@gem_partial_pwrite_pread@reads-uncached:
> - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3282]) +4 other tests skip
> [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_partial_pwrite_pread@reads-uncached.html
>
> * igt@gem_partial_pwrite_pread@writes-after-reads-display:
> - shard-dg1: NOTRUN -> [SKIP][122] ([i915#3282]) +6 other tests skip
> [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
>
> * igt@gem_pxp@regular-baseline-src-copy-readible:
> - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4270]) +3 other tests skip
> [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html
> - shard-rkl: NOTRUN -> [SKIP][124] ([i915#4270]) +2 other tests skip
> [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_pxp@regular-baseline-src-copy-readible.html
>
> * igt@gem_pxp@reject-modify-context-protection-off-1:
> - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#4270])
> [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
>
> * igt@gem_pxp@verify-pxp-stale-buf-execution:
> - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4270])
> [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gem_pxp@verify-pxp-stale-buf-execution.html
>
> * igt@gem_render_copy@linear-to-vebox-y-tiled:
> - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#8428]) +5 other tests skip
> [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gem_render_copy@linear-to-vebox-y-tiled.html
>
> * igt@gem_render_copy@y-tiled-to-vebox-x-tiled:
> - shard-rkl: NOTRUN -> [SKIP][128] ([i915#768])
> [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html
>
> * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
> - shard-rkl: NOTRUN -> [SKIP][129] ([i915#8411])
> [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
>
> * igt@gem_set_tiling_vs_blt@tiled-to-untiled:
> - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4079]) +3 other tests skip
> [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
>
> * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
> - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4079])
> [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
>
> * igt@gem_softpin@evict-snoop-interruptible:
> - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4885])
> [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
> - shard-rkl: NOTRUN -> [SKIP][133] ([fdo#109312])
> [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gem_softpin@evict-snoop-interruptible.html
>
> * igt@gem_userptr_blits@coherency-sync:
> - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3297]) +1 other test skip
> [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html
>
> * igt@gem_userptr_blits@map-fixed-invalidate-busy:
> - shard-dg2: NOTRUN -> [SKIP][135] ([i915#3297] / [i915#4880]) +2 other tests skip
> [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
>
> * igt@gem_userptr_blits@readonly-pwrite-unsync:
> - shard-dg1: NOTRUN -> [SKIP][136] ([i915#3297]) +1 other test skip
> [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gem_userptr_blits@readonly-pwrite-unsync.html
>
> * igt@gen3_render_tiledy_blits:
> - shard-dg2: NOTRUN -> [SKIP][137] ([fdo#109289])
> [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gen3_render_tiledy_blits.html
>
> * igt@gen7_exec_parse@chained-batch:
> - shard-dg1: NOTRUN -> [SKIP][138] ([fdo#109289])
> [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@gen7_exec_parse@chained-batch.html
>
> * igt@gen7_exec_parse@cmd-crossing-page:
> - shard-mtlp: NOTRUN -> [SKIP][139] ([fdo#109289]) +2 other tests skip
> [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@gen7_exec_parse@cmd-crossing-page.html
>
> * igt@gen9_exec_parse@allowed-single:
> - shard-dg1: NOTRUN -> [SKIP][140] ([i915#2527]) +2 other tests skip
> [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@gen9_exec_parse@allowed-single.html
>
> * igt@gen9_exec_parse@batch-without-end:
> - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#2856])
> [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@gen9_exec_parse@batch-without-end.html
>
> * igt@gen9_exec_parse@secure-batches:
> - shard-dg2: NOTRUN -> [SKIP][142] ([i915#2856]) +3 other tests skip
> [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@gen9_exec_parse@secure-batches.html
>
> * igt@gen9_exec_parse@unaligned-access:
> - shard-rkl: [PASS][143] -> [SKIP][144] ([i915#2527])
> [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html
> [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gen9_exec_parse@unaligned-access.html
>
> * igt@gen9_exec_parse@valid-registers:
> - shard-rkl: NOTRUN -> [SKIP][145] ([i915#2527]) +1 other test skip
> [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html
>
> * igt@i915_fb_tiling:
> - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#4881])
> [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_fb_tiling.html
>
> * igt@i915_module_load@resize-bar:
> - shard-dg1: NOTRUN -> [SKIP][147] ([i915#7178])
> [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@i915_module_load@resize-bar.html
>
> * igt@i915_pm_rps@thresholds-idle-park@gt0:
> - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8925]) +1 other test skip
> [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html
>
> * igt@i915_pm_rps@thresholds-idle-park@gt1:
> - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#8925]) +1 other test skip
> [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt1.html
>
> * igt@i915_pm_rps@thresholds-park@gt0:
> - shard-dg2: NOTRUN -> [SKIP][150] ([i915#8925])
> [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@i915_pm_rps@thresholds-park@gt0.html
>
> * igt@i915_pm_rps@thresholds@gt0:
> - shard-dg1: NOTRUN -> [SKIP][151] ([i915#8925])
> [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@i915_pm_rps@thresholds@gt0.html
>
> * igt@i915_pm_sseu@full-enable:
> - shard-dg2: NOTRUN -> [SKIP][152] ([i915#4387])
> [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@i915_pm_sseu@full-enable.html
>
> * igt@i915_query@query-topology-known-pci-ids:
> - shard-tglu: NOTRUN -> [SKIP][153] ([fdo#109303])
> [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@i915_query@query-topology-known-pci-ids.html
>
> * igt@i915_query@query-topology-unsupported:
> - shard-rkl: NOTRUN -> [SKIP][154] ([fdo#109302])
> [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@i915_query@query-topology-unsupported.html
>
> * igt@kms_addfb_basic@basic-y-tiled-legacy:
> - shard-dg2: NOTRUN -> [SKIP][155] ([i915#4215] / [i915#5190])
> [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html
>
> * igt@kms_addfb_basic@bo-too-small-due-to-tiling:
> - shard-dg1: NOTRUN -> [SKIP][156] ([i915#4212])
> [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
>
> * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
> - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#4212])
> [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
>
> * igt@kms_async_flips@crc@pipe-d-dp-4:
> - shard-dg2: NOTRUN -> [FAIL][158] ([i915#8247]) +3 other tests fail
> [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html
>
> * igt@kms_atomic@plane-overlay-legacy:
> - shard-rkl: NOTRUN -> [SKIP][159] ([i915#1845] / [i915#4098])
> [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_atomic@plane-overlay-legacy.html
>
> * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
> - shard-dg2: NOTRUN -> [SKIP][160] ([i915#1769] / [i915#3555])
> [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
>
> * igt@kms_big_fb@4-tiled-16bpp-rotate-0:
> - shard-dg1: NOTRUN -> [SKIP][161] ([i915#4538] / [i915#5286])
> [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
>
> * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
> - shard-rkl: NOTRUN -> [SKIP][162] ([i915#5286]) +4 other tests skip
> [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
>
> * igt@kms_big_fb@4-tiled-addfb:
> - shard-dg1: NOTRUN -> [SKIP][163] ([i915#5286])
> [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb.html
>
> * igt@kms_big_fb@4-tiled-addfb-size-overflow:
> - shard-dg2: [PASS][164] -> [SKIP][165] ([fdo#109315]) +2 other tests skip
> [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
> [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
>
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
> - shard-mtlp: NOTRUN -> [FAIL][166] ([i915#5138])
> [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
>
> * igt@kms_big_fb@linear-16bpp-rotate-270:
> - shard-rkl: NOTRUN -> [SKIP][167] ([fdo#111614] / [i915#3638])
> [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html
>
> * igt@kms_big_fb@linear-32bpp-rotate-90:
> - shard-dg1: NOTRUN -> [SKIP][168] ([i915#3638])
> [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-90.html
>
> * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
> - shard-dg2: NOTRUN -> [SKIP][169] ([fdo#111614]) +8 other tests skip
> [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
>
> * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
> - shard-mtlp: NOTRUN -> [SKIP][170] ([fdo#111614]) +2 other tests skip
> [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
>
> * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
> - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#6187]) +1 other test skip
> [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
> - shard-tglu: [PASS][172] -> [FAIL][173] ([i915#3743]) +1 other test fail
> [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
> [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
> - shard-dg2: NOTRUN -> [SKIP][174] ([fdo#109315] / [i915#5190])
> [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
> - shard-dg2: NOTRUN -> [SKIP][175] ([i915#5190]) +24 other tests skip
> [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
>
> * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
> - shard-dg1: NOTRUN -> [SKIP][176] ([i915#4538]) +1 other test skip
> [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
>
> * igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
> - shard-dg2: NOTRUN -> [SKIP][177] ([i915#4538] / [i915#5190]) +4 other tests skip
> [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
>
> * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
> - shard-dg1: NOTRUN -> [SKIP][178] ([fdo#111615])
> [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
>
> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
> - shard-mtlp: NOTRUN -> [SKIP][179] ([fdo#111615]) +5 other tests skip
> [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
>
> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
> - shard-rkl: NOTRUN -> [SKIP][180] ([fdo#110723]) +2 other tests skip
> [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
>
> * igt@kms_big_joiner@invalid-modeset:
> - shard-rkl: NOTRUN -> [SKIP][181] ([i915#2705])
> [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_big_joiner@invalid-modeset.html
>
> * igt@kms_cdclk@plane-scaling:
> - shard-rkl: NOTRUN -> [SKIP][182] ([i915#3742])
> [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
>
> * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
> - shard-dg2: NOTRUN -> [SKIP][183] ([i915#4087]) +3 other tests skip
> [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
>
> * igt@kms_chamelium_color@ctm-0-50:
> - shard-dg1: NOTRUN -> [SKIP][184] ([fdo#111827])
> [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_chamelium_color@ctm-0-50.html
>
> * igt@kms_chamelium_color@ctm-limited-range:
> - shard-mtlp: NOTRUN -> [SKIP][185] ([fdo#111827]) +2 other tests skip
> [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_chamelium_color@ctm-limited-range.html
>
> * igt@kms_chamelium_color@degamma:
> - shard-rkl: NOTRUN -> [SKIP][186] ([fdo#111827])
> [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_chamelium_color@degamma.html
>
> * igt@kms_chamelium_color@gamma:
> - shard-dg2: NOTRUN -> [SKIP][187] ([fdo#111827])
> [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_chamelium_color@gamma.html
>
> * igt@kms_chamelium_frames@hdmi-crc-multiple:
> - shard-dg2: NOTRUN -> [SKIP][188] ([i915#7828]) +10 other tests skip
> [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
>
> * igt@kms_chamelium_frames@hdmi-frame-dump:
> - shard-rkl: NOTRUN -> [SKIP][189] ([i915#7828]) +4 other tests skip
> [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_chamelium_frames@hdmi-frame-dump.html
>
> * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
> - shard-dg1: NOTRUN -> [SKIP][190] ([i915#7828]) +2 other tests skip
> [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
>
> * igt@kms_chamelium_hpd@vga-hpd-without-ddc:
> - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#7828]) +5 other tests skip
> [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
>
> * igt@kms_content_protection@atomic:
> - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#6944])
> [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_content_protection@atomic.html
>
> * igt@kms_content_protection@dp-mst-lic-type-0:
> - shard-dg1: NOTRUN -> [SKIP][193] ([i915#3299])
> [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-0.html
>
> * igt@kms_content_protection@dp-mst-lic-type-1:
> - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3299])
> [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html
>
> * igt@kms_content_protection@dp-mst-type-1:
> - shard-dg2: NOTRUN -> [SKIP][195] ([i915#3299])
> [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_content_protection@dp-mst-type-1.html
>
> * igt@kms_content_protection@srm:
> - shard-dg1: NOTRUN -> [SKIP][196] ([i915#7116])
> [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_content_protection@srm.html
>
> * igt@kms_content_protection@type1:
> - shard-dg2: NOTRUN -> [SKIP][197] ([i915#7118]) +1 other test skip
> [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_content_protection@type1.html
>
> * igt@kms_cursor_crc@cursor-offscreen-32x10:
> - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555]) +6 other tests skip
> [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html
>
> * igt@kms_cursor_crc@cursor-offscreen-512x512:
> - shard-dg1: NOTRUN -> [SKIP][199] ([i915#3359]) +2 other tests skip
> [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-512x512.html
>
> * igt@kms_cursor_crc@cursor-onscreen-32x10:
> - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8814]) +1 other test skip
> [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
>
> * igt@kms_cursor_crc@cursor-onscreen-512x512:
> - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3359]) +1 other test skip
> [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
>
> * igt@kms_cursor_crc@cursor-random-512x170:
> - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3359])
> [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html
>
> * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
> - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3359])
> [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
>
> * igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1:
> - shard-glk: [PASS][204] -> [DMESG-FAIL][205] ([i915#118])
> [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1.html
> [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk8/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-hdmi-a-1.html
>
> * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
> - shard-dg1: NOTRUN -> [SKIP][206] ([fdo#111767] / [fdo#111825])
> [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
>
> * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
> - shard-dg1: NOTRUN -> [SKIP][207] ([fdo#111825]) +16 other tests skip
> [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
>
> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
> - shard-rkl: NOTRUN -> [SKIP][208] ([i915#4103])
> [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
> - shard-dg2: NOTRUN -> [SKIP][209] ([i915#4103] / [i915#4213] / [i915#5608])
> [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
>
> * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
> - shard-rkl: [PASS][210] -> [SKIP][211] ([i915#1845] / [i915#4098]) +1 other test skip
> [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
> [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
>
> * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
> - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3546]) +1 other test skip
> [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
> - shard-dg2: NOTRUN -> [SKIP][213] ([fdo#109274] / [i915#5354]) +6 other tests skip
> [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
> - shard-apl: NOTRUN -> [SKIP][214] ([fdo#109271] / [fdo#111767]) +1 other test skip
> [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
> - shard-dg2: NOTRUN -> [SKIP][215] ([fdo#109274] / [fdo#111767] / [i915#5354])
> [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
> - shard-apl: [PASS][216] -> [FAIL][217] ([i915#2346])
> [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
> - shard-glk: [PASS][218] -> [FAIL][219] ([i915#2346])
> [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>
> * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
> - shard-dg2: NOTRUN -> [SKIP][220] ([i915#4103] / [i915#4213])
> [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
>
> * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
> - shard-dg2: NOTRUN -> [SKIP][221] ([i915#9226] / [i915#9261]) +1 other test skip
> [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
>
> * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
> - shard-dg2: NOTRUN -> [SKIP][222] ([i915#9227])
> [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
>
> * igt@kms_display_modes@mst-extended-mode-negative:
> - shard-dg2: NOTRUN -> [SKIP][223] ([i915#8588])
> [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/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][224] ([i915#3804])
> [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
>
> * igt@kms_dp_aux_dev:
> - shard-rkl: NOTRUN -> [SKIP][225] ([i915#1257])
> [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_dp_aux_dev.html
>
> * igt@kms_draw_crc@draw-method-mmap-wc:
> - shard-dg1: NOTRUN -> [SKIP][226] ([i915#8812])
> [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html
>
> * igt@kms_dsc@dsc-with-formats:
> - shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840])
> [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
>
> * igt@kms_dsc@dsc-with-output-formats:
> - shard-dg1: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840])
> [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html
>
> * igt@kms_flip@2x-absolute-wf_vblank:
> - shard-dg2: NOTRUN -> [SKIP][229] ([fdo#109274]) +9 other tests skip
> [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_flip@2x-absolute-wf_vblank.html
>
> * igt@kms_flip@2x-blocking-wf_vblank:
> - shard-snb: NOTRUN -> [SKIP][230] ([fdo#109271]) +7 other tests skip
> [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-snb4/igt@kms_flip@2x-blocking-wf_vblank.html
>
> * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
> - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3637]) +5 other tests skip
> [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
>
> * igt@kms_flip@2x-flip-vs-fences:
> - shard-dg2: NOTRUN -> [SKIP][232] ([i915#8381])
> [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html
>
> * igt@kms_flip@2x-flip-vs-fences-interruptible:
> - shard-dg1: NOTRUN -> [SKIP][233] ([i915#8381])
> [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html
>
> * igt@kms_flip@2x-plain-flip:
> - shard-rkl: NOTRUN -> [SKIP][234] ([fdo#111825]) +7 other tests skip
> [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
> - shard-dg1: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672]) +2 other tests skip
> [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
> - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#8810])
> [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
> - shard-rkl: NOTRUN -> [SKIP][237] ([i915#2672]) +1 other test skip
> [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
> - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2672]) +1 other test skip
> [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
> - shard-dg2: NOTRUN -> [SKIP][239] ([fdo#109315]) +5 other tests skip
> [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
> - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555])
> [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
> - shard-dg2: NOTRUN -> [SKIP][241] ([i915#2672]) +4 other tests skip
> [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
> - shard-rkl: [PASS][242] -> [SKIP][243] ([i915#1849] / [i915#4098]) +1 other test skip
> [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
> [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt:
> - shard-dg1: NOTRUN -> [SKIP][244] ([i915#8708]) +8 other tests skip
> [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
> - shard-dg2: NOTRUN -> [SKIP][245] ([i915#5354]) +43 other tests skip
> [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
> - shard-tglu: NOTRUN -> [SKIP][246] ([fdo#109280])
> [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
> - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#1825]) +25 other tests skip
> [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
> - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#8708]) +5 other tests skip
> [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
> - shard-dg2: NOTRUN -> [SKIP][249] ([i915#8708]) +22 other tests skip
> [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
> - shard-rkl: NOTRUN -> [SKIP][250] ([i915#3023]) +16 other tests skip
> [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
> - shard-dg1: NOTRUN -> [SKIP][251] ([i915#3458]) +5 other tests skip
> [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
> - shard-dg2: NOTRUN -> [SKIP][252] ([i915#3458]) +20 other tests skip
> [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
> - shard-rkl: NOTRUN -> [SKIP][253] ([fdo#111825] / [i915#1825]) +26 other tests skip
> [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
>
> * igt@kms_hdr@bpc-switch:
> - shard-dg2: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8228]) +1 other test skip
> [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@kms_hdr@bpc-switch.html
> - shard-rkl: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228]) +1 other test skip
> [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_hdr@bpc-switch.html
>
> * igt@kms_invalid_mode@bad-vsync-end:
> - shard-rkl: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#4098])
> [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_invalid_mode@bad-vsync-end.html
>
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#4816])
> [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>
> * igt@kms_panel_fitting@legacy:
> - shard-dg2: NOTRUN -> [SKIP][258] ([i915#6301])
> [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_panel_fitting@legacy.html
>
> * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
> - shard-rkl: NOTRUN -> [SKIP][259] ([fdo#109289])
> [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
>
> * igt@kms_pipe_crc_basic@suspend-read-crc:
> - shard-dg2: NOTRUN -> [SKIP][260] ([i915#2575]) +41 other tests skip
> [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc.html
>
> * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1:
> - shard-apl: NOTRUN -> [FAIL][261] ([i915#7862]) +1 other test fail
> [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html
>
> * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
> - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#3582]) +3 other tests skip
> [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
>
> * igt@kms_plane_lowres@tiling-y:
> - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8821])
> [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_plane_lowres@tiling-y.html
>
> * igt@kms_plane_multiple@tiling-yf:
> - shard-dg1: NOTRUN -> [SKIP][264] ([i915#3555]) +2 other tests skip
> [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_plane_multiple@tiling-yf.html
>
> * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
> - shard-rkl: NOTRUN -> [SKIP][265] ([i915#5176] / [i915#9423]) +1 other test skip
> [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
>
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
> - shard-dg1: NOTRUN -> [SKIP][266] ([i915#5235]) +15 other tests skip
> [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-19/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
>
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
> - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#5235]) +2 other tests skip
> [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/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][268] ([i915#5235]) +1 other test skip
> [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
>
> * igt@kms_plane_scaling@planes-upscale-factor-0-25:
> - shard-rkl: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152])
> [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
>
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4:
> - shard-dg2: NOTRUN -> [SKIP][270] ([i915#5235]) +15 other tests skip
> [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4.html
>
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1:
> - shard-apl: NOTRUN -> [SKIP][271] ([fdo#109271]) +98 other tests skip
> [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1.html
>
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
> - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#5235]) +8 other tests skip
> [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html
>
> * igt@kms_prime@basic-modeset-hybrid:
> - shard-dg2: NOTRUN -> [SKIP][273] ([i915#6524] / [i915#6805])
> [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html
>
> * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
> - shard-tglu: NOTRUN -> [SKIP][274] ([i915#658])
> [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
>
> * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
> - shard-rkl: NOTRUN -> [SKIP][275] ([i915#658]) +1 other test skip
> [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
>
> * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
> - shard-apl: NOTRUN -> [SKIP][276] ([fdo#109271] / [i915#658]) +1 other test skip
> [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
>
> * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
> - shard-dg1: NOTRUN -> [SKIP][277] ([fdo#111068] / [i915#658]) +1 other test skip
> [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
>
> * igt@kms_psr2_su@page_flip-xrgb8888:
> - shard-dg2: NOTRUN -> [SKIP][278] ([i915#658]) +3 other tests skip
> [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html
>
> * igt@kms_psr@cursor_blt:
> - shard-rkl: NOTRUN -> [SKIP][279] ([i915#1072]) +4 other tests skip
> [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_psr@cursor_blt.html
>
> * igt@kms_psr@primary_render:
> - shard-dg1: NOTRUN -> [SKIP][280] ([i915#1072] / [i915#4078]) +1 other test skip
> [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@kms_psr@primary_render.html
>
> * igt@kms_psr@psr2_sprite_plane_move:
> - shard-dg2: NOTRUN -> [SKIP][281] ([i915#1072]) +8 other tests skip
> [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@kms_psr@psr2_sprite_plane_move.html
>
> * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
> - shard-rkl: NOTRUN -> [SKIP][282] ([i915#5461] / [i915#658])
> [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
>
> * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
> - shard-dg2: NOTRUN -> [SKIP][283] ([i915#5461] / [i915#658])
> [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
>
> * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
> - shard-dg1: NOTRUN -> [SKIP][284] ([i915#5289])
> [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
>
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
> - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#4235])
> [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
>
> * igt@kms_scaling_modes@scaling-mode-none:
> - shard-dg2: NOTRUN -> [SKIP][286] ([i915#3555]) +2 other tests skip
> [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_scaling_modes@scaling-mode-none.html
>
> * igt@kms_setmode@basic@pipe-a-vga-1:
> - shard-snb: NOTRUN -> [FAIL][287] ([i915#5465]) +1 other test fail
> [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-snb4/igt@kms_setmode@basic@pipe-a-vga-1.html
>
> * igt@kms_setmode@clone-exclusive-crtc:
> - shard-dg2: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#4098]) +2 other tests skip
> [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@kms_setmode@clone-exclusive-crtc.html
>
> * igt@kms_setmode@invalid-clone-single-crtc:
> - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8809])
> [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_setmode@invalid-clone-single-crtc.html
>
> * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
> - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#8623])
> [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
>
> * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
> - shard-rkl: [PASS][291] -> [FAIL][292] ([i915#9196])
> [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
> [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
>
> * igt@kms_vblank@wait-forked:
> - shard-rkl: NOTRUN -> [SKIP][293] ([i915#4098]) +2 other tests skip
> [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_vblank@wait-forked.html
>
> * igt@kms_writeback@writeback-invalid-parameters:
> - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#2437]) +1 other test skip
> [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html
>
> * igt@perf@create-destroy-userspace-config:
> - shard-dg2: [PASS][295] -> [SKIP][296] ([i915#5608]) +1 other test skip
> [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
> [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
>
> * igt@perf@global-sseu-config-invalid:
> - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#7387])
> [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html
>
> * igt@perf@non-zero-reason@0-rcs0:
> - shard-dg2: NOTRUN -> [FAIL][298] ([i915#7484])
> [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html
>
> * igt@perf@per-context-mode-unprivileged:
> - shard-dg1: NOTRUN -> [SKIP][299] ([fdo#109289] / [i915#2433])
> [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html
>
> * igt@perf@unprivileged-single-ctx-counters:
> - shard-rkl: NOTRUN -> [SKIP][300] ([i915#2433])
> [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html
>
> * igt@perf_pmu@busy-double-start@vecs1:
> - shard-dg2: NOTRUN -> [FAIL][301] ([i915#4349]) +3 other tests fail
> [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
>
> * igt@perf_pmu@faulting-read:
> - shard-dg2: NOTRUN -> [SKIP][302] ([i915#5608]) +3 other tests skip
> [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@perf_pmu@faulting-read.html
>
> * igt@perf_pmu@rc6@other-idle-gt0:
> - shard-dg1: NOTRUN -> [SKIP][303] ([i915#8516])
> [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@perf_pmu@rc6@other-idle-gt0.html
>
> * igt@prime_udl:
> - shard-dg2: NOTRUN -> [SKIP][304] ([fdo#109291])
> [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@prime_udl.html
>
> * igt@prime_vgem@basic-read:
> - shard-dg2: NOTRUN -> [SKIP][305] ([i915#3291] / [i915#3708])
> [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@prime_vgem@basic-read.html
>
> * igt@prime_vgem@fence-write-hang:
> - shard-dg1: NOTRUN -> [SKIP][306] ([i915#3708])
> [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@prime_vgem@fence-write-hang.html
>
> * igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted:
> - shard-mtlp: NOTRUN -> [FAIL][307] ([i915#9583])
> [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-2/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted.html
>
> * igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled:
> - shard-rkl: NOTRUN -> [FAIL][308] ([i915#9583])
> [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled.html
>
> * igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted:
> - shard-apl: NOTRUN -> [FAIL][309] ([i915#9583])
> [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl4/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted.html
>
> * igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted:
> - shard-dg2: NOTRUN -> [FAIL][310] ([i915#9582])
> [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-7/igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted.html
>
> * igt@syncobj_timeline@wait-all-for-submit-delayed-submit:
> - shard-dg2: [PASS][311] -> [SKIP][312] ([i915#2575]) +26 other tests skip
> [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
> [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
>
> * igt@v3d/v3d_perfmon@get-values-invalid-pointer:
> - shard-dg1: NOTRUN -> [SKIP][313] ([i915#2575]) +5 other tests skip
> [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-17/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html
>
> * igt@v3d/v3d_submit_csd@bad-bo:
> - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#2575]) +8 other tests skip
> [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@v3d/v3d_submit_csd@bad-bo.html
>
> * igt@v3d/v3d_wait_bo@bad-bo:
> - shard-rkl: NOTRUN -> [SKIP][315] ([fdo#109315]) +8 other tests skip
> [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-6/igt@v3d/v3d_wait_bo@bad-bo.html
>
> * igt@vc4/vc4_perfmon@destroy-valid-perfmon:
> - shard-dg2: NOTRUN -> [SKIP][316] ([i915#7711]) +9 other tests skip
> [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-2/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html
>
> * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
> - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#7711]) +6 other tests skip
> [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
>
> * igt@vc4/vc4_purgeable_bo@mark-willneed:
> - shard-rkl: NOTRUN -> [SKIP][318] ([i915#7711]) +4 other tests skip
> [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@vc4/vc4_purgeable_bo@mark-willneed.html
>
> * igt@vc4/vc4_tiling@get-bad-modifier:
> - shard-dg1: NOTRUN -> [SKIP][319] ([i915#7711]) +2 other tests skip
> [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-13/igt@vc4/vc4_tiling@get-bad-modifier.html
>
>
> #### Possible fixes ####
>
> * igt@drm_fdinfo@most-busy-check-all@rcs0:
> - shard-rkl: [FAIL][320] ([i915#7742]) -> [PASS][321]
> [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
> [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
>
> * igt@fbdev@pan:
> - shard-rkl: [SKIP][322] ([i915#2582]) -> [PASS][323]
> [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@fbdev@pan.html
> [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@fbdev@pan.html
>
> * igt@gem_ctx_shared@q-smoketest@vcs1:
> - shard-dg2: [INCOMPLETE][324] -> [PASS][325]
> [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-7/igt@gem_ctx_shared@q-smoketest@vcs1.html
> [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-6/igt@gem_ctx_shared@q-smoketest@vcs1.html
>
> * igt@gem_eio@wait-wedge-10ms:
> - shard-mtlp: [ABORT][326] ([i915#9414]) -> [PASS][327] +2 other tests pass
> [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-8/igt@gem_eio@wait-wedge-10ms.html
> [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-7/igt@gem_eio@wait-wedge-10ms.html
>
> * igt@gem_exec_endless@dispatch@bcs0:
> - shard-rkl: [SKIP][328] ([i915#9591]) -> [PASS][329]
> [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_endless@dispatch@bcs0.html
> [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@gem_exec_endless@dispatch@bcs0.html
>
> * igt@gem_exec_fair@basic-none@vcs0:
> - shard-rkl: [FAIL][330] ([i915#2842]) -> [PASS][331]
> [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
> [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html
>
> * igt@gem_exec_fair@basic-pace-share@rcs0:
> - shard-glk: [FAIL][332] ([i915#2842]) -> [PASS][333]
> [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
> [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
> - shard-tglu: [FAIL][334] ([i915#2842]) -> [PASS][335]
> [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
> [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
>
> * igt@gem_exec_flush@basic-batch-kernel-default-uc:
> - shard-mtlp: [DMESG-FAIL][336] ([i915#8962]) -> [PASS][337]
> [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
> [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-1/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
>
> * igt@gem_exec_reloc@basic-wc-gtt-noreloc:
> - shard-rkl: [SKIP][338] ([i915#3281]) -> [PASS][339]
> [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
> [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
>
> * igt@gem_exec_suspend@basic-s4-devices@smem:
> - shard-tglu: [ABORT][340] ([i915#7975] / [i915#8213]) -> [PASS][341]
> [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
> [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@gem_exec_suspend@basic-s4-devices@smem.html
>
> * igt@gem_mmap_gtt@cpuset-medium-copy:
> - shard-apl: [INCOMPLETE][342] -> [PASS][343]
> [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl6/igt@gem_mmap_gtt@cpuset-medium-copy.html
> [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl7/igt@gem_mmap_gtt@cpuset-medium-copy.html
>
> * igt@gem_partial_pwrite_pread@writes-after-reads-display:
> - shard-rkl: [SKIP][344] ([i915#3282]) -> [PASS][345] +3 other tests pass
> [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
> [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
>
> * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
> - shard-rkl: [SKIP][346] ([i915#8411]) -> [PASS][347]
> [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
> [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
>
> * igt@gen9_exec_parse@bb-chained:
> - shard-rkl: [SKIP][348] ([i915#2527]) -> [PASS][349]
> [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gen9_exec_parse@bb-chained.html
> [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html
>
> * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
> - shard-tglu: [FAIL][350] ([i915#3743]) -> [PASS][351] +2 other tests pass
> [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
> [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
>
> * igt@kms_big_fb@y-tiled-64bpp-rotate-0:
> - shard-rkl: [SKIP][352] ([i915#1845] / [i915#4098]) -> [PASS][353] +2 other tests pass
> [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
> [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
>
> * {igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs}:
> - shard-rkl: [SKIP][354] ([i915#4098]) -> [PASS][355]
> [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs.html
> [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-rc-ccs.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
> - shard-apl: [FAIL][356] ([i915#2346]) -> [PASS][357]
> [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>
> * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
> - shard-glk: [FAIL][358] ([i915#79]) -> [PASS][359]
> [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
> [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
> - shard-rkl: [SKIP][360] ([i915#1849] / [i915#4098]) -> [PASS][361] +3 other tests pass
> [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
> [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
>
> * {igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait}:
> - shard-rkl: [SKIP][362] ([i915#9519]) -> [PASS][363] +1 other test pass
> [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
> [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
>
> * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
> - shard-mtlp: [FAIL][364] ([i915#9196]) -> [PASS][365] +1 other test pass
> [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
> [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
>
> * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
> - shard-tglu: [FAIL][366] ([i915#9196]) -> [PASS][367]
> [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
> [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
>
> * igt@perf_pmu@busy-double-start@rcs0:
> - shard-mtlp: [FAIL][368] ([i915#4349]) -> [PASS][369] +1 other test pass
> [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html
> [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
>
> * igt@perf_pmu@frequency@gt0:
> - shard-mtlp: [SKIP][370] ([i915#9432]) -> [PASS][371]
> [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@frequency@gt0.html
> [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-mtlp-3/igt@perf_pmu@frequency@gt0.html
> - shard-dg1: [SKIP][372] ([i915#9432]) -> [PASS][373]
> [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
> [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
>
>
> #### Warnings ####
>
> * igt@gem_bad_reloc@negative-reloc-lut:
> - shard-dg2: [SKIP][374] ([i915#3281]) -> [SKIP][375] ([i915#2575])
> [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_bad_reloc@negative-reloc-lut.html
> [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_bad_reloc@negative-reloc-lut.html
>
> * igt@gem_busy@semaphore:
> - shard-dg2: [SKIP][376] ([i915#3936]) -> [SKIP][377] ([i915#2575])
> [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_busy@semaphore.html
> [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_busy@semaphore.html
>
> * igt@gem_exec_balancer@bonded-dual:
> - shard-dg2: [SKIP][378] ([i915#4771]) -> [SKIP][379] ([i915#2575])
> [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
> [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html
>
> * igt@gem_exec_balancer@invalid-bonds:
> - shard-dg2: [SKIP][380] ([i915#4036]) -> [SKIP][381] ([i915#2575])
> [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
> [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
>
> * igt@gem_mmap_gtt@ptrace:
> - shard-dg2: [SKIP][382] ([i915#4077]) -> [SKIP][383] ([i915#2575]) +1 other test skip
> [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
> [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
>
> * igt@gem_mmap_wc@write-gtt-read-wc:
> - shard-dg2: [SKIP][384] ([i915#4083]) -> [SKIP][385] ([i915#2575])
> [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html
> [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html
>
> * igt@gem_partial_pwrite_pread@writes-after-reads:
> - shard-dg2: [SKIP][386] ([i915#3282]) -> [SKIP][387] ([i915#2575])
> [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html
> [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html
>
> * igt@gem_pxp@create-protected-buffer:
> - shard-dg2: [SKIP][388] ([i915#4270]) -> [SKIP][389] ([i915#2575])
> [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
> [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
>
> * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
> - shard-dg2: [SKIP][390] ([i915#5190]) -> [SKIP][391] ([i915#2575] / [i915#5190])
> [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
> [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
>
> * igt@gen3_mixed_blits:
> - shard-dg2: [SKIP][392] ([fdo#109289]) -> [SKIP][393] ([i915#2575])
> [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@gen3_mixed_blits.html
> [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@gen3_mixed_blits.html
>
> * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
> - shard-rkl: [SKIP][394] ([i915#1845] / [i915#4098]) -> [SKIP][395] ([i915#1769] / [i915#3555])
> [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
> [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
>
> * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
> - shard-rkl: [SKIP][396] ([i915#4098]) -> [SKIP][397] ([i915#5286]) +1 other test skip
> [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
> [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
>
> * igt@kms_big_fb@4-tiled-addfb:
> - shard-rkl: [SKIP][398] ([i915#5286]) -> [SKIP][399] ([i915#4098])
> [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
> [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html
>
> * igt@kms_big_fb@linear-8bpp-rotate-270:
> - shard-rkl: [SKIP][400] ([i915#1845] / [i915#4098]) -> [SKIP][401] ([fdo#111614] / [i915#3638])
> [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
> [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
>
> * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
> - shard-dg2: [SKIP][402] ([fdo#111614]) -> [SKIP][403] ([fdo#109315])
> [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
> [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
> - shard-dg2: [SKIP][404] ([i915#5190]) -> [SKIP][405] ([fdo#109315] / [i915#5190])
> [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
> [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
>
> * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
> - shard-rkl: [SKIP][406] ([fdo#110723]) -> [SKIP][407] ([i915#1845] / [i915#4098])
> [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
> [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
>
> * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
> - shard-rkl: [SKIP][408] ([i915#1845] / [i915#4098]) -> [SKIP][409] ([fdo#110723]) +1 other test skip
> [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
> [409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
>
> * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
> - shard-dg2: [SKIP][410] ([i915#4538] / [i915#5190]) -> [SKIP][411] ([fdo#109315] / [i915#5190]) +1 other test skip
> [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
> [411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
>
> * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
> - shard-rkl: [SKIP][412] ([fdo#111615]) -> [SKIP][413] ([i915#1845] / [i915#4098])
> [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
> [413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
>
> * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
> - shard-dg2: [SKIP][414] ([i915#7828]) -> [SKIP][415] ([i915#2575]) +1 other test skip
> [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
> [415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
>
> * igt@kms_content_protection@dp-mst-lic-type-0:
> - shard-rkl: [SKIP][416] ([i915#3116]) -> [SKIP][417] ([i915#1845] / [i915#4098])
> [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html
> [417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
>
> * igt@kms_content_protection@srm:
> - shard-rkl: [SKIP][418] ([i915#7118]) -> [SKIP][419] ([i915#1845] / [i915#4098])
> [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_content_protection@srm.html
> [419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_content_protection@srm.html
>
> * igt@kms_cursor_crc@cursor-offscreen-max-size:
> - shard-rkl: [SKIP][420] ([i915#4098]) -> [SKIP][421] ([i915#3555]) +1 other test skip
> [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html
> [421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
>
> * igt@kms_cursor_crc@cursor-sliding-512x170:
> - shard-rkl: [SKIP][422] ([i915#3359]) -> [SKIP][423] ([i915#4098])
> [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x170.html
> [423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
>
> * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
> - shard-rkl: [SKIP][424] ([fdo#111825]) -> [SKIP][425] ([i915#1845] / [i915#4098]) +2 other tests skip
> [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
> [425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
> - shard-dg2: [SKIP][426] ([fdo#109274] / [i915#5354]) -> [SKIP][427] ([i915#2575])
> [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
> [427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
>
> * igt@kms_dsc@dsc-with-output-formats:
> - shard-rkl: [SKIP][428] ([i915#3555] / [i915#3840]) -> [SKIP][429] ([i915#4098])
> [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
> [429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html
>
> * igt@kms_fbcon_fbt@psr:
> - shard-rkl: [SKIP][430] ([fdo#110189] / [i915#3955]) -> [SKIP][431] ([i915#3955])
> [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
> [431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
>
> * igt@kms_fence_pin_leak:
> - shard-dg2: [SKIP][432] ([i915#4881]) -> [SKIP][433] ([i915#2575])
> [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_fence_pin_leak.html
> [433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_fence_pin_leak.html
>
> * igt@kms_flip@2x-flip-vs-panning-vs-hang:
> - shard-dg2: [SKIP][434] ([fdo#109274]) -> [SKIP][435] ([i915#2575]) +1 other test skip
> [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
> [435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
> - shard-rkl: [SKIP][436] ([fdo#111825] / [i915#1825]) -> [SKIP][437] ([i915#1849] / [i915#4098]) +6 other tests skip
> [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
> [437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
> - shard-rkl: [SKIP][438] ([i915#1849] / [i915#4098]) -> [SKIP][439] ([fdo#111825] / [i915#1825]) +7 other tests skip
> [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
> [439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
> - shard-dg2: [SKIP][440] ([i915#5354]) -> [SKIP][441] ([fdo#109315]) +4 other tests skip
> [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
> [441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
> - shard-rkl: [SKIP][442] ([i915#3023]) -> [SKIP][443] ([i915#1849] / [i915#4098]) +5 other tests skip
> [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
> [443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-5/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][444] ([i915#1849] / [i915#4098]) -> [SKIP][445] ([fdo#111825])
> [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
> [445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
> - shard-dg2: [SKIP][446] ([i915#8708]) -> [SKIP][447] ([fdo#109315]) +5 other tests skip
> [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
> [447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu:
> - shard-rkl: [SKIP][448] ([i915#1849] / [i915#4098]) -> [SKIP][449] ([i915#3023]) +3 other tests skip
> [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
> [449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite:
> - shard-dg2: [SKIP][450] ([i915#3458]) -> [SKIP][451] ([fdo#109315]) +4 other tests skip
> [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
> [451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
>
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> - shard-rkl: [SKIP][452] ([i915#4070] / [i915#4816]) -> [SKIP][453] ([i915#4816])
> [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> [453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>
> * igt@kms_panel_fitting@atomic-fastset:
> - shard-dg2: [SKIP][454] ([i915#6301]) -> [SKIP][455] ([i915#2575])
> [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
> [455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
>
> * igt@kms_psr@psr2_cursor_plane_onoff:
> - shard-dg2: [SKIP][456] ([i915#1072]) -> [SKIP][457] ([fdo#109315])
> [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-11/igt@kms_psr@psr2_cursor_plane_onoff.html
> [457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/shard-dg2-11/igt@kms_psr@psr2_cursor_plane_onoff.html
>
> * igt@kms_scal
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125895v3/index.html
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2023-11-07 18:17 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-02 11:59 [Intel-gfx] [PATCH] drm/i915/dp_mst: Disable DSC on ICL+ MST outputs Imre Deak
2023-11-02 14:06 ` Ville Syrjälä
2023-11-02 19:44 ` [Intel-gfx] [PATCH v2] " Imre Deak
2023-11-03 7:42 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev2) Patchwork
2023-11-03 8:01 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
2023-11-03 21:09 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/dp_mst: Disable DSC on ICL+ MST outputs (rev3) Patchwork
2023-11-03 21:22 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2023-11-04 13:50 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2023-11-06 11:45 ` Imre Deak
2023-11-07 18:16 ` Illipilli, TejasreeX
2023-11-07 13:56 ` Patchwork
2023-11-07 17:35 ` Patchwork
2023-11-07 17:41 ` Patchwork
2023-11-07 17:57 ` Patchwork
2023-11-07 18:12 ` [Intel-gfx] ✓ Fi.CI.IGT: success " Patchwork
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.