* [igt-dev] [PATCH i-g-t v2] tests/kms_atomic: skip mutable zpos test on non-mutable planes
@ 2023-12-01 13:26 Melissa Wen
2023-12-01 14:38 ` Kamil Konieczny
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Melissa Wen @ 2023-12-01 13:26 UTC (permalink / raw)
To: igt-dev, Petri Latvala, Arkadiusz Hiler, Kamil Konieczny,
Bhanuprakash Modem, Ashutosh Dixit, Juha-Pekka Heikkila
Cc: kernel-dev
plane-primary-overlay-mutable-zpos only works if both plane types have
mutable zpos property. However, drivers usually set primary zpos as
immutable and the test case just fails. Create a helper to check if a
plane have mutable zpos and skip the test case if zpos changes are not
allowed.
v1: https://patchwork.freedesktop.org/patch/554257
v2:
- document the new public function (Kamil)
- improve commit message (Kamil)
- rebase on master and replace has_zpos() by has_mutable_zpos()
Signed-off-by: Melissa Wen <mwen@igalia.com>
---
lib/igt_kms.c | 28 ++++++++++++++++++++++++++++
lib/igt_kms.h | 2 ++
tests/kms_atomic.c | 8 ++++----
3 files changed, 34 insertions(+), 4 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 28105a9ef..e4dea1a60 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -3970,6 +3970,34 @@ void igt_plane_set_prop_enum(igt_plane_t *plane,
igt_assert(igt_plane_try_prop_enum(plane, prop, val));
}
+/**
+ * igt_plane_check_prop_is_mutable:
+ * @plane: Target plane.
+ * @prop: Property to check.
+ *
+ * Check if a plane supports a given property and if this property is mutable.
+ *
+ * Returns true if the plane has the mutable property. False if the property is
+ * not support or it's immutable.
+ */
+bool igt_plane_check_prop_is_mutable(igt_plane_t *plane,
+ enum igt_atomic_plane_properties igt_prop)
+{
+ drmModePropertyPtr prop;
+ uint64_t value;
+ bool has_prop;
+
+ has_prop = kmstest_get_property(plane->pipe->display->drm_fd,
+ plane->drm_plane->plane_id,
+ DRM_MODE_OBJECT_PLANE,
+ igt_plane_prop_names[igt_prop], NULL,
+ &value, &prop);
+ if (!has_prop)
+ return false;
+
+ return !(prop->flags & DRM_MODE_PROP_IMMUTABLE);
+}
+
/**
* igt_plane_replace_prop_blob:
* @plane: plane to set property on.
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 8e7801a78..b3882808b 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -812,6 +812,8 @@ extern void igt_plane_replace_prop_blob(igt_plane_t *plane,
enum igt_atomic_plane_properties prop,
const void *ptr, size_t length);
+extern bool igt_plane_check_prop_is_mutable(igt_plane_t *plane,
+ enum igt_atomic_plane_properties igt_prop);
/**
* igt_output_has_prop:
* @output: Output to check.
diff --git a/tests/kms_atomic.c b/tests/kms_atomic.c
index aa3af936a..96cd58571 100644
--- a/tests/kms_atomic.c
+++ b/tests/kms_atomic.c
@@ -1354,10 +1354,10 @@ static void atomic_clear(data_t *data, enum pipe pipe, igt_output_t *output)
igt_remove_fb(data->drm_fd, &data->fb);
}
-/* Returns true if plane supports zpos property. */
-static bool has_zpos(igt_plane_t *plane)
+/* Returns true if plane supports zpos property and it's mutable. */
+static bool has_mutable_zpos(igt_plane_t *plane)
{
- return igt_plane_has_prop(plane, IGT_PLANE_ZPOS);
+ return igt_plane_check_prop_is_mutable(plane, IGT_PLANE_ZPOS);
}
static bool
@@ -1457,7 +1457,7 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL)
atomic_setup(&data, pipe, output);
if (!overlay)
continue;
- if (!has_zpos(data.primary) || !has_zpos(overlay))
+ if (!has_mutable_zpos(data.primary) || !has_mutable_zpos(overlay))
continue;
if (!igt_plane_has_format_mod(data.primary, DRM_FORMAT_ARGB8888, 0x0) ||
!igt_plane_has_format_mod(overlay, DRM_FORMAT_ARGB1555, 0x0))
--
2.42.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [igt-dev] [PATCH i-g-t v2] tests/kms_atomic: skip mutable zpos test on non-mutable planes 2023-12-01 13:26 [igt-dev] [PATCH i-g-t v2] tests/kms_atomic: skip mutable zpos test on non-mutable planes Melissa Wen @ 2023-12-01 14:38 ` Kamil Konieczny 2023-12-04 13:11 ` Melissa Wen 2023-12-01 15:43 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Kamil Konieczny @ 2023-12-01 14:38 UTC (permalink / raw) To: igt-dev; +Cc: kernel-dev Hi Melissa, On 2023-12-01 at 12:26:09 -0100, Melissa Wen wrote: > plane-primary-overlay-mutable-zpos only works if both plane types have > mutable zpos property. However, drivers usually set primary zpos as > immutable and the test case just fails. Create a helper to check if a > plane have mutable zpos and skip the test case if zpos changes are not > allowed. > > v1: https://patchwork.freedesktop.org/patch/554257 > > v2: > - document the new public function (Kamil) > - improve commit message (Kamil) > - rebase on master and replace has_zpos() by has_mutable_zpos() > > Signed-off-by: Melissa Wen <mwen@igalia.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > lib/igt_kms.c | 28 ++++++++++++++++++++++++++++ > lib/igt_kms.h | 2 ++ > tests/kms_atomic.c | 8 ++++---- > 3 files changed, 34 insertions(+), 4 deletions(-) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 28105a9ef..e4dea1a60 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -3970,6 +3970,34 @@ void igt_plane_set_prop_enum(igt_plane_t *plane, > igt_assert(igt_plane_try_prop_enum(plane, prop, val)); > } > > +/** > + * igt_plane_check_prop_is_mutable: > + * @plane: Target plane. > + * @prop: Property to check. > + * > + * Check if a plane supports a given property and if this property is mutable. > + * > + * Returns true if the plane has the mutable property. False if the property is > + * not support or it's immutable. > + */ > +bool igt_plane_check_prop_is_mutable(igt_plane_t *plane, > + enum igt_atomic_plane_properties igt_prop) > +{ > + drmModePropertyPtr prop; > + uint64_t value; > + bool has_prop; > + > + has_prop = kmstest_get_property(plane->pipe->display->drm_fd, > + plane->drm_plane->plane_id, > + DRM_MODE_OBJECT_PLANE, > + igt_plane_prop_names[igt_prop], NULL, > + &value, &prop); > + if (!has_prop) > + return false; > + > + return !(prop->flags & DRM_MODE_PROP_IMMUTABLE); > +} > + > /** > * igt_plane_replace_prop_blob: > * @plane: plane to set property on. > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index 8e7801a78..b3882808b 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -812,6 +812,8 @@ extern void igt_plane_replace_prop_blob(igt_plane_t *plane, > enum igt_atomic_plane_properties prop, > const void *ptr, size_t length); > > +extern bool igt_plane_check_prop_is_mutable(igt_plane_t *plane, > + enum igt_atomic_plane_properties igt_prop); > /** > * igt_output_has_prop: > * @output: Output to check. > diff --git a/tests/kms_atomic.c b/tests/kms_atomic.c > index aa3af936a..96cd58571 100644 > --- a/tests/kms_atomic.c > +++ b/tests/kms_atomic.c > @@ -1354,10 +1354,10 @@ static void atomic_clear(data_t *data, enum pipe pipe, igt_output_t *output) > igt_remove_fb(data->drm_fd, &data->fb); > } > > -/* Returns true if plane supports zpos property. */ > -static bool has_zpos(igt_plane_t *plane) > +/* Returns true if plane supports zpos property and it's mutable. */ > +static bool has_mutable_zpos(igt_plane_t *plane) > { > - return igt_plane_has_prop(plane, IGT_PLANE_ZPOS); > + return igt_plane_check_prop_is_mutable(plane, IGT_PLANE_ZPOS); > } > > static bool > @@ -1457,7 +1457,7 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL) > atomic_setup(&data, pipe, output); > if (!overlay) > continue; > - if (!has_zpos(data.primary) || !has_zpos(overlay)) > + if (!has_mutable_zpos(data.primary) || !has_mutable_zpos(overlay)) > continue; > if (!igt_plane_has_format_mod(data.primary, DRM_FORMAT_ARGB8888, 0x0) || > !igt_plane_has_format_mod(overlay, DRM_FORMAT_ARGB1555, 0x0)) > -- > 2.42.0 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] tests/kms_atomic: skip mutable zpos test on non-mutable planes 2023-12-01 14:38 ` Kamil Konieczny @ 2023-12-04 13:11 ` Melissa Wen 0 siblings, 0 replies; 8+ messages in thread From: Melissa Wen @ 2023-12-04 13:11 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev, kernel-dev On 12/01, Kamil Konieczny wrote: > Hi Melissa, > On 2023-12-01 at 12:26:09 -0100, Melissa Wen wrote: > > plane-primary-overlay-mutable-zpos only works if both plane types have > > mutable zpos property. However, drivers usually set primary zpos as > > immutable and the test case just fails. Create a helper to check if a > > plane have mutable zpos and skip the test case if zpos changes are not > > allowed. > > > > v1: https://patchwork.freedesktop.org/patch/554257 > > > > v2: > > - document the new public function (Kamil) > > - improve commit message (Kamil) > > - rebase on master and replace has_zpos() by has_mutable_zpos() > > > > Signed-off-by: Melissa Wen <mwen@igalia.com> > > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Thanks! Applied to master. Melissa > > > --- > > lib/igt_kms.c | 28 ++++++++++++++++++++++++++++ > > lib/igt_kms.h | 2 ++ > > tests/kms_atomic.c | 8 ++++---- > > 3 files changed, 34 insertions(+), 4 deletions(-) > > > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > > index 28105a9ef..e4dea1a60 100644 > > --- a/lib/igt_kms.c > > +++ b/lib/igt_kms.c > > @@ -3970,6 +3970,34 @@ void igt_plane_set_prop_enum(igt_plane_t *plane, > > igt_assert(igt_plane_try_prop_enum(plane, prop, val)); > > } > > > > +/** > > + * igt_plane_check_prop_is_mutable: > > + * @plane: Target plane. > > + * @prop: Property to check. > > + * > > + * Check if a plane supports a given property and if this property is mutable. > > + * > > + * Returns true if the plane has the mutable property. False if the property is > > + * not support or it's immutable. > > + */ > > +bool igt_plane_check_prop_is_mutable(igt_plane_t *plane, > > + enum igt_atomic_plane_properties igt_prop) > > +{ > > + drmModePropertyPtr prop; > > + uint64_t value; > > + bool has_prop; > > + > > + has_prop = kmstest_get_property(plane->pipe->display->drm_fd, > > + plane->drm_plane->plane_id, > > + DRM_MODE_OBJECT_PLANE, > > + igt_plane_prop_names[igt_prop], NULL, > > + &value, &prop); > > + if (!has_prop) > > + return false; > > + > > + return !(prop->flags & DRM_MODE_PROP_IMMUTABLE); > > +} > > + > > /** > > * igt_plane_replace_prop_blob: > > * @plane: plane to set property on. > > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > > index 8e7801a78..b3882808b 100644 > > --- a/lib/igt_kms.h > > +++ b/lib/igt_kms.h > > @@ -812,6 +812,8 @@ extern void igt_plane_replace_prop_blob(igt_plane_t *plane, > > enum igt_atomic_plane_properties prop, > > const void *ptr, size_t length); > > > > +extern bool igt_plane_check_prop_is_mutable(igt_plane_t *plane, > > + enum igt_atomic_plane_properties igt_prop); > > /** > > * igt_output_has_prop: > > * @output: Output to check. > > diff --git a/tests/kms_atomic.c b/tests/kms_atomic.c > > index aa3af936a..96cd58571 100644 > > --- a/tests/kms_atomic.c > > +++ b/tests/kms_atomic.c > > @@ -1354,10 +1354,10 @@ static void atomic_clear(data_t *data, enum pipe pipe, igt_output_t *output) > > igt_remove_fb(data->drm_fd, &data->fb); > > } > > > > -/* Returns true if plane supports zpos property. */ > > -static bool has_zpos(igt_plane_t *plane) > > +/* Returns true if plane supports zpos property and it's mutable. */ > > +static bool has_mutable_zpos(igt_plane_t *plane) > > { > > - return igt_plane_has_prop(plane, IGT_PLANE_ZPOS); > > + return igt_plane_check_prop_is_mutable(plane, IGT_PLANE_ZPOS); > > } > > > > static bool > > @@ -1457,7 +1457,7 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL) > > atomic_setup(&data, pipe, output); > > if (!overlay) > > continue; > > - if (!has_zpos(data.primary) || !has_zpos(overlay)) > > + if (!has_mutable_zpos(data.primary) || !has_mutable_zpos(overlay)) > > continue; > > if (!igt_plane_has_format_mod(data.primary, DRM_FORMAT_ARGB8888, 0x0) || > > !igt_plane_has_format_mod(overlay, DRM_FORMAT_ARGB1555, 0x0)) > > -- > > 2.42.0 > > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_atomic: skip mutable zpos test on non-mutable planes 2023-12-01 13:26 [igt-dev] [PATCH i-g-t v2] tests/kms_atomic: skip mutable zpos test on non-mutable planes Melissa Wen 2023-12-01 14:38 ` Kamil Konieczny @ 2023-12-01 15:43 ` Patchwork 2023-12-01 16:00 ` [igt-dev] ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-12-01 15:43 UTC (permalink / raw) To: Melissa Wen; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4947 bytes --] == Series Details == Series: tests/kms_atomic: skip mutable zpos test on non-mutable planes URL : https://patchwork.freedesktop.org/series/127190/ State : success == Summary == CI Bug Log - changes from CI_DRM_13959 -> IGTPW_10319 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/index.html Participating hosts (37 -> 35) ------------------------------ Additional (1): bat-kbl-2 Missing (3): bat-adlp-11 fi-snb-2520m bat-dg1-5 Known issues ------------ Here are the changes found in IGTPW_10319 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-jsl-1: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/bat-jsl-1/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#1849]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/bat-kbl-2/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/bat-jsl-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][4] ([fdo#109271]) +20 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-jsl-1: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html * igt@i915_selftest@live@execlists: - fi-bsw-nick: [PASS][6] -> [ABORT][7] ([i915#7911]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/fi-bsw-nick/igt@i915_selftest@live@execlists.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/fi-bsw-nick/igt@i915_selftest@live@execlists.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-1: NOTRUN -> [SKIP][8] ([i915#4103]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-jsl-1: NOTRUN -> [SKIP][9] ([i915#3555]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/bat-jsl-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-jsl-1: NOTRUN -> [SKIP][10] ([fdo#109285]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-kbl-2: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#1845]) +14 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/bat-kbl-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - bat-adls-5: [DMESG-WARN][12] ([i915#5591]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/bat-adls-5/igt@i915_selftest@live@hangcheck.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/bat-adls-5/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7614 -> IGTPW_10319 CI-20190529: 20190529 CI_DRM_13959: f9f47d30e408664ad9ec5f823d23254b7f8e46cd @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10319: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/index.html IGT_7614: c7298ec108dc1c861c9a2593e973648ad9b420b4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +++ 63 lines --- 139 lines == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/index.html [-- Attachment #2: Type: text/html, Size: 5957 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/kms_atomic: skip mutable zpos test on non-mutable planes 2023-12-01 13:26 [igt-dev] [PATCH i-g-t v2] tests/kms_atomic: skip mutable zpos test on non-mutable planes Melissa Wen 2023-12-01 14:38 ` Kamil Konieczny 2023-12-01 15:43 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-12-01 16:00 ` Patchwork 2023-12-03 1:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-12-05 13:02 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-12-01 16:00 UTC (permalink / raw) To: Melissa Wen; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2900 bytes --] == Series Details == Series: tests/kms_atomic: skip mutable zpos test on non-mutable planes URL : https://patchwork.freedesktop.org/series/127190/ State : success == Summary == CI Bug Log - changes from XEIGT_7614_BAT -> XEIGTPW_10319_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10319_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#480]) +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7614/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10319/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@basic-flip-vs-wf_vblank@a-dp3: - bat-dg2-oem2: [PASS][3] -> [FAIL][4] ([Intel XE#480]) +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7614/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp3.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10319/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp3.html #### Possible fixes #### * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-adlp-7: [FAIL][5] ([i915#2346]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7614/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10319/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * {igt@xe_create@create-execqueues-leak}: - bat-atsm-2: [FAIL][7] ([Intel XE#524]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7614/bat-atsm-2/igt@xe_create@create-execqueues-leak.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10319/bat-atsm-2/igt@xe_create@create-execqueues-leak.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 Build changes ------------- * IGT: IGT_7614 -> IGTPW_10319 IGTPW_10319: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/index.html IGT_7614: c7298ec108dc1c861c9a2593e973648ad9b420b4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-544-a8b405ffc0326c79abf737389d99c290648f381d: a8b405ffc0326c79abf737389d99c290648f381d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10319/index.html [-- Attachment #2: Type: text/html, Size: 3643 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_atomic: skip mutable zpos test on non-mutable planes 2023-12-01 13:26 [igt-dev] [PATCH i-g-t v2] tests/kms_atomic: skip mutable zpos test on non-mutable planes Melissa Wen ` (2 preceding siblings ...) 2023-12-01 16:00 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-12-03 1:21 ` Patchwork 2023-12-04 10:12 ` Kamil Konieczny 2023-12-05 13:02 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 1 reply; 8+ messages in thread From: Patchwork @ 2023-12-03 1:21 UTC (permalink / raw) To: Melissa Wen; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 63474 bytes --] == Series Details == Series: tests/kms_atomic: skip mutable zpos test on non-mutable planes URL : https://patchwork.freedesktop.org/series/127190/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13959_full -> IGTPW_10319_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10319_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10319_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10319_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@gt_heartbeat: - shard-mtlp: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-mtlp-8/igt@i915_selftest@live@gt_heartbeat.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-4/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-glk7/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html Known issues ------------ Here are the changes found in IGTPW_10319_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][4] ([i915#6230]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@api_intel_bb@crc32.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +22 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-7/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@busy-hang@rcs0: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414]) +6 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/igt@drm_fdinfo@busy-hang@rcs0.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8414]) +5 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-17/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#3936]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#3936]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@gem_busy@semaphore.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#4873]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@gem_caching@read-writes.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][11] -> [FAIL][12] ([i915#6268]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-15/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#280]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-7/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][16] -> [ABORT][17] ([i915#7975] / [i915#8213]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-12/igt@gem_eio@hibernate.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-14/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@hog: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#4812]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@sliced: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#4812]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@gem_exec_balancer@sliced.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#3539]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: NOTRUN -> [FAIL][21] ([i915#2842]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [PASS][22] -> [FAIL][23] ([i915#2842]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-tglu: NOTRUN -> [FAIL][24] ([i915#2842]) +4 other tests fail [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-5/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4812]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-17/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-concurrent0: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3281]) +5 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-cpu-read-active: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3281]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-15/igt@gem_exec_reloc@basic-cpu-read-active.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#3281]) +4 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4860]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-glk: NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#4613]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-glk2/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4613]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-8/igt@gem_lmem_swapping@basic.html * igt@gem_mmap_gtt@close-race: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4077]) +7 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-19/igt@gem_mmap_gtt@close-race.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4077]) +13 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@gem_mmap_gtt@zero-extend.html - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4077]) +6 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-4/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@coherency: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4083]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-17/igt@gem_mmap_wc@coherency.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4083]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4083]) +9 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3282]) +5 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@exhaustion: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3282]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3282]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-14/igt@gem_pread@snoop.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4270]) +6 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4270]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-8/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4270]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#8428]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4879]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3297]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#3297]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-3/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3297] / [i915#4880]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3297] / [i915#4880]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3297]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3297]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen3_render_tiledx_blits: - shard-dg1: NOTRUN -> [SKIP][56] ([fdo#109289]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@basic-allocation: - shard-mtlp: NOTRUN -> [SKIP][57] ([fdo#109289]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-6/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][58] ([fdo#109289]) +5 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][59] -> [INCOMPLETE][60] ([i915#5566]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-glk4/igt@gen9_exec_parse@allowed-single.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-glk9/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#2527] / [i915#2856]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-2/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-start-far: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#2527]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-19/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#2856]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#2856]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8925]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_rps@thresholds-idle-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3555] / [i915#8925]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt1.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#8925]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg1: NOTRUN -> [SKIP][68] ([fdo#109303]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-17/igt@i915_query@query-topology-known-pci-ids.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4215] / [i915#5190]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_addfb_basic@basic-y-tiled-legacy.html - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4212]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4212]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-19/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4212]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#1769] / [i915#3555]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#1769] / [i915#3555]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][75] ([i915#1769] / [i915#3555]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4538] / [i915#5286]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][77] ([fdo#111615] / [i915#5286]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: [PASS][78] -> [FAIL][79] ([i915#5138]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3638]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-17/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][81] ([fdo#111614]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][82] ([fdo#111614]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#5190]) +12 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][84] ([fdo#111615]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][85] ([fdo#111615]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4538]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-15/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][87] ([fdo#111615]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4538] / [i915#5190]) +9 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_joiner@2x-modeset: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#2705]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@kms_big_joiner@2x-modeset.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#7213] / [i915#9010]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4087] / [i915#7213]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#4087]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#7828]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-4/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg1: NOTRUN -> [SKIP][94] ([fdo#111827]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-14/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-dg2: NOTRUN -> [SKIP][95] ([fdo#111827]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#7828]) +9 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#7828]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#7828]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-5/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#3555]) +7 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_color@deep-color.html - shard-tglu: NOTRUN -> [SKIP][100] ([i915#3555]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-6/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#3299]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#3299]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#6944] / [i915#7116] / [i915#7118]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-5/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#7118]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#3359]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#3359]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#3359]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][108] ([fdo#109274]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#4103] / [i915#4213]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][110] ([fdo#109274] / [i915#5354]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#3546]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#4103]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#8812]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#3840] / [i915#9688]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-1/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#3840] / [i915#9688]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-3/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#3469]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_fbcon_fbt@psr.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#4881]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#3637]) +5 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-snb: NOTRUN -> [SKIP][119] ([fdo#109271]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-snb4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][120] ([fdo#109274]) +9 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][121] ([fdo#109274] / [i915#3637]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-8/igt@kms_flip@2x-plain-flip.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#2672]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/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-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#2587] / [i915#2672]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#3555] / [i915#8810]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#2672] / [i915#3555]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@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][126] ([i915#2672]) +7 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg1: NOTRUN -> [SKIP][127] ([fdo#109285]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-14/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-dg1: [PASS][128] -> [DMESG-WARN][129] ([i915#4423]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#8708]) +16 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#8708]) +6 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#5354]) +31 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][133] ([fdo#111825]) +19 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][134] ([fdo#109280]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#3458]) +25 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#8708]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#1825]) +12 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][138] ([fdo#110189]) +6 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#3458]) +7 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [PASS][140] -> [SKIP][141] ([i915#433]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-10/igt@kms_hdmi_inject@inject-audio.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-4/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#3555] / [i915#8228]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-9/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#3555] / [i915#8228]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#6301]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3582]) +3 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#8821]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#3555]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-15/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#5176] / [i915#9423]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#5235]) +7 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3555] / [i915#5235]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#5235]) +8 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#5235]) +19 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_prime@basic-crc-hybrid: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#6524]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#6524] / [i915#6805]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#9683]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#9683]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@kms_psr2_su@page_flip-nv12.html - shard-tglu: NOTRUN -> [SKIP][157] ([fdo#109642] / [fdo#111068] / [i915#9683]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-8/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@psr2_basic: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#9673] / [i915#9732]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@kms_psr@psr2_basic.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#9673] / [i915#9732]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#4235]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@kms_rotation_crc@bad-pixel-format.html - shard-dg2: NOTRUN -> [SKIP][161] ([i915#4235]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-1/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#4235] / [i915#5190]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][163] ([i915#5465]) +1 other test fail [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-snb5/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#8623]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-15/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][165] ([i915#8623]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-dg2: NOTRUN -> [SKIP][166] ([fdo#109309]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-tglu: [PASS][167] -> [FAIL][168] ([i915#9196]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#2437]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#2437]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-5/igt@kms_writeback@writeback-fb-id.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: [PASS][171] -> [FAIL][172] ([i915#8724]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg2-5/igt@perf@enable-disable@0-rcs0.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#7387]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-3/igt@perf@global-sseu-config-invalid.html - shard-dg2: NOTRUN -> [SKIP][174] ([i915#7387]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@cpu-hotplug: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#8850]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg1: [PASS][176] -> [FAIL][177] ([i915#9593]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-16/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [INCOMPLETE][178] ([i915#5493]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#3291] / [i915#3708]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3708]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-4/igt@prime_vgem@fence-read-hang.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#2575]) +3 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#2575]) +17 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_perfmon@get-values-invalid-pad: - shard-tglu: NOTRUN -> [SKIP][183] ([fdo#109315] / [i915#2575]) +3 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-5/igt@v3d/v3d_perfmon@get-values-invalid-pad.html * igt@v3d/v3d_submit_csd@bad-multisync-extension: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#2575]) +5 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-3/igt@v3d/v3d_submit_csd@bad-multisync-extension.html * igt@v3d/v3d_submit_csd@bad-pad: - shard-glk: NOTRUN -> [SKIP][185] ([fdo#109271]) +32 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-glk7/igt@v3d/v3d_submit_csd@bad-pad.html * igt@vc4/vc4_mmap@mmap-bo: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#7711]) +9 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_purgeable_bo@free-purged-bo: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#7711]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@vc4/vc4_purgeable_bo@free-purged-bo.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#2575]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-3/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#7711]) +4 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html #### Possible fixes #### * igt@gem_eio@hibernate: - shard-tglu: [ABORT][190] ([i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-10/igt@gem_eio@hibernate.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-4/igt@gem_eio@hibernate.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: [FAIL][192] ([i915#2842]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-9/igt@gem_exec_fair@basic-pace-solo@rcs0.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-9/igt@gem_exec_fair@basic-pace-solo@rcs0.html * {igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0}: - shard-dg1: [FAIL][194] ([i915#3591]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][196] ([i915#3743]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: [FAIL][198] ([i915#6880]) -> [PASS][199] +1 other test pass [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][200] ([i915#8292]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * {igt@kms_pm_rpm@dpms-non-lpsp}: - shard-dg2: [SKIP][202] ([i915#9519]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg2-10/igt@kms_pm_rpm@dpms-non-lpsp.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-1/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [FAIL][204] ([i915#9196]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [FAIL][206] ([i915#4349]) -> [PASS][207] +2 other tests pass [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-mtlp-3/igt@perf_pmu@busy-double-start@bcs0.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@busy-idle-check-all@bcs0: - shard-dg2: [FAIL][208] -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg2-10/igt@perf_pmu@busy-idle-check-all@bcs0.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@perf_pmu@busy-idle-check-all@bcs0.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg2: [FAIL][210] ([i915#4349]) -> [PASS][211] +1 other test pass [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg2-10/igt@perf_pmu@busy-idle-check-all@vcs0.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@perf_pmu@busy-idle-check-all@vcs0.html - shard-dg1: [FAIL][212] ([i915#4349]) -> [PASS][213] +3 other tests pass [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vcs0.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-17/igt@perf_pmu@busy-idle-check-all@vcs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][214] -> [INCOMPLETE][215] ([i915#9408]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][216] ([i915#5493]) -> [DMESG-WARN][217] ([i915#4936] / [i915#5493]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg1: [SKIP][218] ([i915#4077]) -> [SKIP][219] ([i915#4077] / [i915#4423]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-14/igt@gem_mmap_gtt@cpuset-big-copy-odd.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: [SKIP][220] ([i915#3282]) -> [SKIP][221] ([i915#3282] / [i915#4423]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-19/igt@gem_pwrite@basic-exhaustion.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@gem_pwrite@basic-exhaustion.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: [SKIP][222] ([i915#4079]) -> [SKIP][223] ([i915#4079] / [i915#4423]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-18/igt@gem_set_tiling_vs_gtt.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@gem_set_tiling_vs_gtt.html * igt@kms_async_flips@crc@pipe-b-edp-1: - shard-mtlp: [DMESG-FAIL][224] ([i915#8561]) -> [FAIL][225] ([i915#8247]) +1 other test fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-mtlp-2/igt@kms_async_flips@crc@pipe-b-edp-1.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-8/igt@kms_async_flips@crc@pipe-b-edp-1.html * igt@kms_psr@psr2_cursor_mmap_gtt: - shard-dg2: [SKIP][226] ([i915#9673] / [i915#9732]) -> [SKIP][227] ([i915#9673] / [i915#9736]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg2-2/igt@kms_psr@psr2_cursor_mmap_gtt.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@kms_psr@psr2_cursor_mmap_gtt.html * igt@kms_psr@psr2_sprite_render: - shard-dg2: [SKIP][228] ([i915#9673] / [i915#9736]) -> [SKIP][229] ([i915#9673] / [i915#9732]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg2-11/igt@kms_psr@psr2_sprite_render.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_psr@psr2_sprite_render.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9593]: https://gitlab.freedesktop.org/drm/intel/issues/9593 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9736]: https://gitlab.freedesktop.org/drm/intel/issues/9736 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7614 -> IGTPW_10319 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13959: f9f47d30e408664ad9ec5f823d23254b7f8e46cd @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10319: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/index.html IGT_7614: c7298ec108dc1c861c9a2593e973648ad9b420b4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/index.html [-- Attachment #2: Type: text/html, Size: 76721 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_atomic: skip mutable zpos test on non-mutable planes 2023-12-03 1:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-12-04 10:12 ` Kamil Konieczny 0 siblings, 0 replies; 8+ messages in thread From: Kamil Konieczny @ 2023-12-04 10:12 UTC (permalink / raw) To: igt-dev; +Cc: lgci.bug.filing, I915-ci-infra Hi, below is unrelated to kms_atomic change. Regards, Kamil On 2023-12-03 at 01:21:42 -0000, Patchwork wrote: > == Series Details == > > Series: tests/kms_atomic: skip mutable zpos test on non-mutable planes > URL : https://patchwork.freedesktop.org/series/127190/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_13959_full -> IGTPW_10319_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_10319_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_10319_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/index.html > > Participating hosts (10 -> 10) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_10319_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_selftest@live@gt_heartbeat: > - shard-mtlp: [PASS][1] -> [INCOMPLETE][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-mtlp-8/igt@i915_selftest@live@gt_heartbeat.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-4/igt@i915_selftest@live@gt_heartbeat.html > > * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: > - shard-glk: NOTRUN -> [INCOMPLETE][3] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-glk7/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_10319_full that come from known issues: > > ### IGT changes ### [...cut...] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_atomic: skip mutable zpos test on non-mutable planes 2023-12-01 13:26 [igt-dev] [PATCH i-g-t v2] tests/kms_atomic: skip mutable zpos test on non-mutable planes Melissa Wen ` (3 preceding siblings ...) 2023-12-03 1:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-12-05 13:02 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-12-05 13:02 UTC (permalink / raw) To: Melissa Wen; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 70653 bytes --] == Series Details == Series: tests/kms_atomic: skip mutable zpos test on non-mutable planes URL : https://patchwork.freedesktop.org/series/127190/ State : success == Summary == CI Bug Log - changes from CI_DRM_13959_full -> IGTPW_10319_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_10319_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][1] ([i915#6230]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@api_intel_bb@crc32.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][2] ([i915#8414]) +22 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-7/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@busy-hang@rcs0: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8414]) +6 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/igt@drm_fdinfo@busy-hang@rcs0.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][4] ([i915#8414]) +5 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-17/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#3936]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#3936]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@gem_busy@semaphore.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#4873]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@gem_caching@read-writes.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][8] -> [FAIL][9] ([i915#6268]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8555]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#280]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-15/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#280]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-7/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][13] -> [ABORT][14] ([i915#7975] / [i915#8213]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-12/igt@gem_eio@hibernate.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-14/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@hog: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#4812]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@sliced: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#4812]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@gem_exec_balancer@sliced.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#3539]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: NOTRUN -> [FAIL][18] ([i915#2842]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [PASS][19] -> [FAIL][20] ([i915#2842]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-tglu: NOTRUN -> [FAIL][21] ([i915#2842]) +4 other tests fail [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-5/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#4812]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#3539] / [i915#4852]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-17/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-concurrent0: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#3281]) +5 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-cpu-read-active: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#3281]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-15/igt@gem_exec_reloc@basic-cpu-read-active.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#3281]) +4 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4537] / [i915#4812]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4537] / [i915#4812]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#4860]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-glk: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#4613]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-glk2/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4613]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-8/igt@gem_lmem_swapping@basic.html * igt@gem_mmap_gtt@close-race: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4077]) +8 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-19/igt@gem_mmap_gtt@close-race.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4077]) +14 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@gem_mmap_gtt@zero-extend.html - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4077]) +6 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-4/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@coherency: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4083]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-17/igt@gem_mmap_wc@coherency.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4083]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4083]) +9 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3282]) +5 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@exhaustion: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3282]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3282]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-14/igt@gem_pread@snoop.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4270]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4270]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-8/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4270]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#8428]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4879]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3297]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][48] ([i915#3297]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-3/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3297] / [i915#4880]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3297] / [i915#4880]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3297]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3297]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen3_render_tiledx_blits: - shard-dg1: NOTRUN -> [SKIP][53] ([fdo#109289]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@basic-allocation: - shard-mtlp: NOTRUN -> [SKIP][54] ([fdo#109289]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-6/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][55] ([fdo#109289]) +5 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][56] -> [INCOMPLETE][57] ([i915#5566]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-glk4/igt@gen9_exec_parse@allowed-single.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-glk9/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#2527] / [i915#2856]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-2/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-start-far: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#2527]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-19/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#2856]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#2856]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8925]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_rps@thresholds-idle-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3555] / [i915#8925]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt1.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#8925]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg1: NOTRUN -> [SKIP][65] ([fdo#109303]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-17/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_selftest@live@gt_heartbeat: - shard-mtlp: [PASS][66] -> [INCOMPLETE][67] ([i915#9679]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-mtlp-8/igt@i915_selftest@live@gt_heartbeat.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-4/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4215] / [i915#5190]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_addfb_basic@basic-y-tiled-legacy.html - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4212]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4212]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-19/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4212]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#1769] / [i915#3555]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#1769] / [i915#3555]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][74] ([i915#1769] / [i915#3555]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4538] / [i915#5286]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][76] ([fdo#111615] / [i915#5286]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: [PASS][77] -> [FAIL][78] ([i915#5138]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3638]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-17/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][80] ([fdo#111614]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][81] ([fdo#111614]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#5190]) +12 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][83] ([fdo#111615]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][84] ([fdo#111615]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4538]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-15/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][86] ([fdo#111615]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4538] / [i915#5190]) +9 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_joiner@2x-modeset: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#2705]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-ccs: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#5354] / [i915#6095]) +7 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-3/igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#5354] / [i915#6095]) +21 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-16/igt@kms_ccs@pipe-a-random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-b-random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#5354] / [i915#6095]) +15 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-4/igt@kms_ccs@pipe-b-random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#7213] / [i915#9010]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4087] / [i915#7213]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4087]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#7828]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-4/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg1: NOTRUN -> [SKIP][96] ([fdo#111827]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-14/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-dg2: NOTRUN -> [SKIP][97] ([fdo#111827]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#7828]) +9 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#7828]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#7828]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-5/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#3555]) +7 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_color@deep-color.html - shard-tglu: NOTRUN -> [SKIP][102] ([i915#3555]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-6/igt@kms_color@deep-color.html * igt@kms_content_protection@content-type-change: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4098] / [i915#9424]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3299]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#3299]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#6944] / [i915#7116] / [i915#7118]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-5/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#7118]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_content_protection@lic.html * igt@kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#9424]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-3/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#3359]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#3359]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#3359]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][112] ([fdo#109274]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4103] / [i915#4213]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][114] ([fdo#109274] / [i915#5354]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#3546]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#4103]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#4098]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#9723]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-17/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#8812]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#3840] / [i915#9688]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-1/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#3840] / [i915#9688]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-3/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#3555] / [i915#3840] / [i915#9053]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#3469]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4854]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-14/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#9337]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-1/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#9337]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#658]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-5/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][128] ([i915#658]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4881]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#3637]) +5 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-snb: NOTRUN -> [SKIP][131] ([fdo#109271]) +6 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-snb4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][132] ([fdo#109274]) +9 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][133] ([fdo#109274] / [i915#3637]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-8/igt@kms_flip@2x-plain-flip.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#2672]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/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-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#2587] / [i915#2672]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3555] / [i915#8810]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#2672] / [i915#3555]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@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][138] ([i915#2672]) +7 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg1: NOTRUN -> [SKIP][139] ([fdo#109285]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-14/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-dg1: [PASS][140] -> [DMESG-WARN][141] ([i915#4423]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#8708]) +16 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#8708]) +6 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#5354]) +93 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][145] ([fdo#111825]) +19 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][146] ([fdo#109280]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#3458]) +25 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8708]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#1825]) +12 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][150] ([fdo#110189]) +6 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#3458]) +7 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [PASS][152] -> [SKIP][153] ([i915#433]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-10/igt@kms_hdmi_inject@inject-audio.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-4/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#3555] / [i915#8228]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-9/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#8228]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#6301]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3582]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#8821]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3555]) +3 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-15/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#9423]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#5176]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#5176] / [i915#9423]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#9423]) +7 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#5235]) +7 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#5235]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#5235]) +8 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#5235]) +19 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#5354]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#9293]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-3/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][170] -> [SKIP][171] ([i915#4281]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#9340]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#8430]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#9519]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][175] -> [SKIP][176] ([i915#9519]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][177] ([fdo#109293] / [fdo#109506]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@kms_pm_rpm@pc8-residency.html - shard-mtlp: NOTRUN -> [SKIP][178] ([fdo#109293]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@kms_pm_rpm@pc8-residency.html * igt@kms_prime@basic-crc-hybrid: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#6524]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#6524] / [i915#6805]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#9683]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#9683]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@kms_psr2_su@page_flip-nv12.html - shard-tglu: NOTRUN -> [SKIP][183] ([fdo#109642] / [fdo#111068] / [i915#9683]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-8/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@pr_cursor_render: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#9673] / [i915#9732]) +9 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_psr@pr_cursor_render.html * igt@kms_psr@psr_dpms: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#9673]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@kms_psr@psr_dpms.html * igt@kms_psr@psr_no_drrs: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#9673] / [i915#9732]) +5 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@kms_psr@psr_no_drrs.html * igt@kms_psr@psr_primary_render: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#9673] / [i915#9732]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-4/igt@kms_psr@psr_primary_render.html * igt@kms_psr@psr_sprite_plane_onoff: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#9673] / [i915#9736]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@kms_psr@psr_sprite_plane_onoff.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#4235]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-2/igt@kms_rotation_crc@bad-pixel-format.html - shard-dg2: NOTRUN -> [SKIP][190] ([i915#4235]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-1/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk: NOTRUN -> [INCOMPLETE][191] ([i915#9800]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-glk7/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#4235] / [i915#5190]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][193] ([i915#5465]) +1 other test fail [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-snb5/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#8623]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-15/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][195] ([i915#8623]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-dg2: NOTRUN -> [SKIP][196] ([fdo#109309]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-tglu: [PASS][197] -> [FAIL][198] ([i915#9196]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#2437]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#2437]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-5/igt@kms_writeback@writeback-fb-id.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: [PASS][201] -> [FAIL][202] ([i915#8724]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg2-5/igt@perf@enable-disable@0-rcs0.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#7387]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-3/igt@perf@global-sseu-config-invalid.html - shard-dg2: NOTRUN -> [SKIP][204] ([i915#7387]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@cpu-hotplug: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#8850]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg1: [PASS][206] -> [FAIL][207] ([i915#9593]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-16/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [INCOMPLETE][208] ([i915#5493]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#3291] / [i915#3708]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-6/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#3708]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-4/igt@prime_vgem@fence-read-hang.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#2575]) +3 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#2575]) +17 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-10/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_perfmon@get-values-invalid-pad: - shard-tglu: NOTRUN -> [SKIP][213] ([fdo#109315] / [i915#2575]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-5/igt@v3d/v3d_perfmon@get-values-invalid-pad.html * igt@v3d/v3d_submit_csd@bad-multisync-extension: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#2575]) +5 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-3/igt@v3d/v3d_submit_csd@bad-multisync-extension.html * igt@v3d/v3d_submit_csd@bad-pad: - shard-glk: NOTRUN -> [SKIP][215] ([fdo#109271]) +48 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-glk7/igt@v3d/v3d_submit_csd@bad-pad.html * igt@vc4/vc4_mmap@mmap-bo: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#7711]) +9 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_purgeable_bo@free-purged-bo: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#7711]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-1/igt@vc4/vc4_purgeable_bo@free-purged-bo.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#2575]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-3/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#7711]) +4 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html #### Possible fixes #### * igt@gem_eio@hibernate: - shard-tglu: [ABORT][220] ([i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-10/igt@gem_eio@hibernate.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-4/igt@gem_eio@hibernate.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: [FAIL][222] ([i915#2842]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-9/igt@gem_exec_fair@basic-pace-solo@rcs0.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-9/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-dg1: [FAIL][224] ([i915#3591]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][226] ([i915#3743]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: [FAIL][228] ([i915#6880]) -> [PASS][229] +1 other test pass [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][230] ([i915#8292]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [SKIP][232] ([i915#9519]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg2-10/igt@kms_pm_rpm@dpms-non-lpsp.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-1/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [FAIL][234] ([i915#9196]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [FAIL][236] ([i915#4349]) -> [PASS][237] +2 other tests pass [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-mtlp-3/igt@perf_pmu@busy-double-start@bcs0.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@busy-idle-check-all@bcs0: - shard-dg2: [FAIL][238] ([i915#9763]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg2-10/igt@perf_pmu@busy-idle-check-all@bcs0.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@perf_pmu@busy-idle-check-all@bcs0.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg2: [FAIL][240] ([i915#4349]) -> [PASS][241] +1 other test pass [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg2-10/igt@perf_pmu@busy-idle-check-all@vcs0.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-2/igt@perf_pmu@busy-idle-check-all@vcs0.html - shard-dg1: [FAIL][242] ([i915#4349]) -> [PASS][243] +3 other tests pass [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vcs0.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-17/igt@perf_pmu@busy-idle-check-all@vcs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][244] -> [INCOMPLETE][245] ([i915#9408]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][246] ([i915#5493]) -> [DMESG-WARN][247] ([i915#4936] / [i915#5493]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg1: [SKIP][248] ([i915#4077]) -> [SKIP][249] ([i915#4077] / [i915#4423]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-14/igt@gem_mmap_gtt@cpuset-big-copy-odd.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: [SKIP][250] ([i915#3282]) -> [SKIP][251] ([i915#3282] / [i915#4423]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-19/igt@gem_pwrite@basic-exhaustion.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@gem_pwrite@basic-exhaustion.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: [SKIP][252] ([i915#4079]) -> [SKIP][253] ([i915#4079] / [i915#4423]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-18/igt@gem_set_tiling_vs_gtt.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-18/igt@gem_set_tiling_vs_gtt.html * igt@kms_async_flips@crc@pipe-b-edp-1: - shard-mtlp: [DMESG-FAIL][254] ([i915#8561]) -> [FAIL][255] ([i915#8247]) +1 other test fail [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-mtlp-2/igt@kms_async_flips@crc@pipe-b-edp-1.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-mtlp-8/igt@kms_async_flips@crc@pipe-b-edp-1.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][256] ([i915#9424]) -> [SKIP][257] ([i915#9433]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg1-19/igt@kms_content_protection@mei-interface.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg1-19/igt@kms_content_protection@mei-interface.html * igt@kms_psr@pr_sprite_blt: - shard-dg2: [SKIP][258] ([i915#9673] / [i915#9736]) -> [SKIP][259] ([i915#9673] / [i915#9732]) +5 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg2-11/igt@kms_psr@pr_sprite_blt.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-5/igt@kms_psr@pr_sprite_blt.html * igt@kms_psr@psr2_cursor_mmap_gtt: - shard-dg2: [SKIP][260] ([i915#9673] / [i915#9732]) -> [SKIP][261] ([i915#9673] / [i915#9736]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg2-2/igt@kms_psr@psr2_cursor_mmap_gtt.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@kms_psr@psr2_cursor_mmap_gtt.html * igt@kms_psr@psr_cursor_blt: - shard-dg2: [SKIP][262] ([i915#9673] / [i915#9732]) -> [SKIP][263] ([i915#9673]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13959/shard-dg2-1/igt@kms_psr@psr_cursor_blt.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/shard-dg2-11/igt@kms_psr@psr_cursor_blt.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9593]: https://gitlab.freedesktop.org/drm/intel/issues/9593 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9679]: https://gitlab.freedesktop.org/drm/intel/issues/9679 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9736]: https://gitlab.freedesktop.org/drm/intel/issues/9736 [i915#9763]: https://gitlab.freedesktop.org/drm/intel/issues/9763 [i915#9800]: https://gitlab.freedesktop.org/drm/intel/issues/9800 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7614 -> IGTPW_10319 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13959: f9f47d30e408664ad9ec5f823d23254b7f8e46cd @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10319: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/index.html IGT_7614: c7298ec108dc1c861c9a2593e973648ad9b420b4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10319/index.html [-- Attachment #2: Type: text/html, Size: 87368 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-12-05 13:02 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-12-01 13:26 [igt-dev] [PATCH i-g-t v2] tests/kms_atomic: skip mutable zpos test on non-mutable planes Melissa Wen 2023-12-01 14:38 ` Kamil Konieczny 2023-12-04 13:11 ` Melissa Wen 2023-12-01 15:43 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-12-01 16:00 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-12-03 1:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-12-04 10:12 ` Kamil Konieczny 2023-12-05 13:02 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox