* [igt-dev] [PATCH v4 0/2] Add atomic DRM cursor hotspot test
@ 2023-08-02 11:12 Albert Esteve
2023-08-02 11:12 ` [igt-dev] [PATCH v4 1/2] igt_kms: add hotspot plane property Albert Esteve
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Albert Esteve @ 2023-08-02 11:12 UTC (permalink / raw)
To: igt-dev; +Cc: belmouss, javierm
Add test to verify the kernel patch at [1].
The test modifies the hotspot x and y properties and
checks that they get properly updated after every
display commit.
Note: the patch adds a DRM capability definition taken
directly from the kernel patch. Once the definition
lands on IGT after the drm.h is updated, the local
definition shall be removed.
[1] - https://lists.freedesktop.org/archives/dri-devel/2023-July/414509.html
Albert Esteve (2):
igt_kms: add hotspot plane property
kms_cursor_legacy: modeset-atomic-cursor-hotspot
lib/igt_kms.c | 10 +++++
lib/igt_kms.h | 9 +++++
tests/kms_cursor_legacy.c | 79 +++++++++++++++++++++++++++++++++++++++
3 files changed, 98 insertions(+)
--
2.40.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] [PATCH v4 1/2] igt_kms: add hotspot plane property
2023-08-02 11:12 [igt-dev] [PATCH v4 0/2] Add atomic DRM cursor hotspot test Albert Esteve
@ 2023-08-02 11:12 ` Albert Esteve
2023-08-02 11:12 ` [igt-dev] [PATCH v4 2/2] kms_cursor_legacy: modeset-atomic-cursor-hotspot Albert Esteve
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Albert Esteve @ 2023-08-02 11:12 UTC (permalink / raw)
To: igt-dev; +Cc: belmouss, javierm
Introduce LOCAL_DRM_CLIENT_CAP_CURSOR_PLANE_HOTSPOT
capability definition until patched drm.h uapi header
is upstreamed and lands on IGT.
CURSOR_PLANE_HOTSPOT capability is enabled
conditionally, and then tracked in the igt_display
struct.
Add HOTSPOT_X and HOTSPOT_Y properties
to the atomic_plane_properties struct.
Signed-off-by: Albert Esteve <aesteve@redhat.com>
Acked-by: Javier Martinez Canillas <javierm@redhat.com>
Acked-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
lib/igt_kms.c | 10 ++++++++++
lib/igt_kms.h | 9 +++++++++
2 files changed, 19 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index f2b0eed57..e0959ccff 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -601,6 +601,8 @@ const char * const igt_plane_prop_names[IGT_NUM_PLANE_PROPS] = {
[IGT_PLANE_CRTC_Y] = "CRTC_Y",
[IGT_PLANE_CRTC_W] = "CRTC_W",
[IGT_PLANE_CRTC_H] = "CRTC_H",
+ [IGT_PLANE_HOTSPOT_X] = "HOTSPOT_X",
+ [IGT_PLANE_HOTSPOT_Y] = "HOTSPOT_Y",
[IGT_PLANE_FB_ID] = "FB_ID",
[IGT_PLANE_CRTC_ID] = "CRTC_ID",
[IGT_PLANE_IN_FENCE_FD] = "IN_FENCE_FD",
@@ -2296,6 +2298,11 @@ static void igt_plane_reset(igt_plane_t *plane)
if (igt_plane_has_prop(plane, IGT_PLANE_SCALING_FILTER))
igt_plane_set_prop_enum(plane, IGT_PLANE_SCALING_FILTER, "Default");
+ if (igt_plane_has_prop(plane, IGT_PLANE_HOTSPOT_X))
+ igt_plane_set_prop_value(plane, IGT_PLANE_HOTSPOT_X, 0);
+ if (igt_plane_has_prop(plane, IGT_PLANE_HOTSPOT_Y))
+ igt_plane_set_prop_value(plane, IGT_PLANE_HOTSPOT_Y, 0);
+
igt_plane_clear_prop_changed(plane, IGT_PLANE_IN_FENCE_FD);
plane->values[IGT_PLANE_IN_FENCE_FD] = ~0ULL;
plane->gem_handle = 0;
@@ -2680,6 +2687,9 @@ void igt_display_require(igt_display_t *display, int drm_fd)
if (drmSetClientCap(drm_fd, DRM_CLIENT_CAP_ATOMIC, 1) == 0)
display->is_atomic = 1;
+ if (drmSetClientCap(drm_fd, LOCAL_DRM_CLIENT_CAP_CURSOR_PLANE_HOTSPOT, 1) == 0)
+ display->has_virt_cursor_plane = 1;
+
plane_resources = drmModeGetPlaneResources(display->drm_fd);
igt_assert(plane_resources);
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 1b6988c17..91355c910 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -41,6 +41,12 @@
/* Low-level helpers with kmstest_ prefix */
+/**
+ * Clients which do set cursor hotspot and treat the cursor plane
+ * like a mouse cursor should set this property.
+ */
+#define LOCAL_DRM_CLIENT_CAP_CURSOR_PLANE_HOTSPOT 6
+
/**
* pipe:
* @PIPE_NONE: Invalid pipe, used for disconnecting a output from a pipe.
@@ -318,6 +324,8 @@ enum igt_atomic_plane_properties {
IGT_PLANE_ZPOS,
IGT_PLANE_FB_DAMAGE_CLIPS,
IGT_PLANE_SCALING_FILTER,
+ IGT_PLANE_HOTSPOT_X,
+ IGT_PLANE_HOTSPOT_Y,
IGT_NUM_PLANE_PROPS
};
@@ -448,6 +456,7 @@ struct igt_display {
igt_pipe_t *pipes;
bool has_cursor_plane;
bool is_atomic;
+ bool has_virt_cursor_plane;
bool first_commit;
uint64_t *modifiers;
--
2.40.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] [PATCH v4 2/2] kms_cursor_legacy: modeset-atomic-cursor-hotspot
2023-08-02 11:12 [igt-dev] [PATCH v4 0/2] Add atomic DRM cursor hotspot test Albert Esteve
2023-08-02 11:12 ` [igt-dev] [PATCH v4 1/2] igt_kms: add hotspot plane property Albert Esteve
@ 2023-08-02 11:12 ` Albert Esteve
2023-08-02 12:58 ` [igt-dev] ○ CI.xeBAT: info for Add atomic DRM cursor hotspot test (rev4) Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Albert Esteve @ 2023-08-02 11:12 UTC (permalink / raw)
To: igt-dev; +Cc: belmouss, javierm
Add a test for modesetting an atomic cursor plane
hotspot property. Test added to verify the kernel
patch at [1]. The test first checks if the
plane is atomic and has the hotspot property.
and if it does, it sets different random hot_x
and hot_y values and checks that it is updated
correctly after an atomic commit.
v2: - Remove uapi drm header changes
- Add local drm capability definition
- Set CURSOR_PLANE_HOTSPOT capability conditionally
- Minor typo fix
v3: - Remove trailing tabs/spaces
- Remove redundant check before commit
- Reset cursor hotspot after test
v4: - Track revision history
[1] https://lists.freedesktop.org/archives/dri-devel/2023-July/414509.html
Signed-off-by: Albert Esteve <aesteve@redhat.com>
Acked-by: Javier Martinez Canillas <javierm@redhat.com>
Acked-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_cursor_legacy.c | 79 +++++++++++++++++++++++++++++++++++++++
1 file changed, 79 insertions(+)
diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c
index 1ebac9d31..87cfb9e64 100644
--- a/tests/kms_cursor_legacy.c
+++ b/tests/kms_cursor_legacy.c
@@ -218,6 +218,12 @@ static igt_plane_t
return cursor;
}
+static void set_cursor_hotspot(igt_plane_t *cursor, int hot_x, int hot_y)
+{
+ igt_output_set_prop_value(cursor, IGT_PLANE_HOTSPOT_X, hot_x);
+ igt_output_set_prop_value(cursor, IGT_PLANE_HOTSPOT_Y, hot_y);
+}
+
static void populate_cursor_args(igt_display_t *display, enum pipe pipe,
struct drm_mode_cursor *arg, struct igt_fb *fb)
{
@@ -1607,6 +1613,68 @@ static void flip_vs_cursor_busy_crc(igt_display_t *display, bool atomic)
put_ahnd(ahnd);
}
+static void modeset_atomic_cursor_hotspot(igt_display_t *display)
+{
+ struct igt_fb cursor_fb;
+ igt_output_t *output;
+ enum pipe pipe;
+ igt_plane_t *cursor = NULL;
+ bool has_hotspot_prop;
+ uint64_t cursor_width, cursor_height;
+ uint32_t hot_x, hot_y, init_hot_x, init_hot_y;
+
+ igt_require(display->is_atomic);
+ igt_require(display->has_virt_cursor_plane);
+ pipe = find_connected_pipe(display, false, &output);
+ igt_require(output);
+
+ igt_info("Using pipe %s & %s\n",
+ kmstest_pipe_name(pipe), igt_output_name(output));
+
+ cursor_width = cursor_height = 64;
+ igt_create_color_fb(display->drm_fd, cursor_width, cursor_height, DRM_FORMAT_ARGB8888,
+ DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb);
+
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ cursor = set_cursor_on_pipe(display, pipe, &cursor_fb);
+
+ has_hotspot_prop = cursor->props[IGT_PLANE_HOTSPOT_X] ||
+ cursor->props[IGT_PLANE_HOTSPOT_Y];
+ igt_require_f(has_hotspot_prop, "Cursor plane lacks the hotspot property");
+
+ init_hot_x = igt_plane_get_prop(cursor, IGT_PLANE_HOTSPOT_X);
+ init_hot_y = igt_plane_get_prop(cursor, IGT_PLANE_HOTSPOT_Y);
+
+ /*
+ * Change the hotspot coordinates randomly and check that the property
+ * is updated accordingly.
+ */
+ srand(time(NULL));
+ for (int i = 0; i < 20; i++) {
+ hot_x = rand() % cursor_width;
+ hot_y = rand() % cursor_height;
+ igt_debug("Update cursor hotspot: (%d, %d)\n", hot_x, hot_y);
+
+ /* Set cursor hotspot property values */
+ set_cursor_hotspot(cursor, hot_x, hot_y);
+
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ /* After the commit, the cursor hotspot property values are updated */
+ igt_assert_eq(igt_plane_get_prop(cursor, IGT_PLANE_HOTSPOT_X), hot_x);
+ igt_assert_eq(igt_plane_get_prop(cursor, IGT_PLANE_HOTSPOT_Y), hot_y);
+ }
+
+ /* Clean-up */
+ set_cursor_hotspot(cursor, init_hot_x, init_hot_y);
+ igt_plane_set_fb(cursor, NULL);
+ igt_output_set_pipe(output, PIPE_NONE);
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ igt_remove_fb(display->drm_fd, &cursor_fb);
+}
+
igt_main
{
const int ncpus = sysconf(_SC_NPROCESSORS_ONLN);
@@ -1681,6 +1749,17 @@ igt_main
nonblocking_modeset_vs_cursor(&display, 16);
}
+ igt_describe("Test changes the cursor hotspot and checks that the "
+ "property is updated accordignly");
+ igt_subtest_group {
+ igt_fixture
+ igt_display_require_output(&display);
+
+ igt_subtest("modeset-atomic-cursor-hotspot") {
+ modeset_atomic_cursor_hotspot(&display);
+ }
+ }
+
igt_describe("This test executes flips on both CRTCs "
"while running cursor updates in parallel");
igt_subtest_group {
--
2.40.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for Add atomic DRM cursor hotspot test (rev4)
2023-08-02 11:12 [igt-dev] [PATCH v4 0/2] Add atomic DRM cursor hotspot test Albert Esteve
2023-08-02 11:12 ` [igt-dev] [PATCH v4 1/2] igt_kms: add hotspot plane property Albert Esteve
2023-08-02 11:12 ` [igt-dev] [PATCH v4 2/2] kms_cursor_legacy: modeset-atomic-cursor-hotspot Albert Esteve
@ 2023-08-02 12:58 ` Patchwork
2023-08-02 13:08 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-08-02 16:34 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-08-02 12:58 UTC (permalink / raw)
To: Albert Esteve; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 339 bytes --]
== Series Details ==
Series: Add atomic DRM cursor hotspot test (rev4)
URL : https://patchwork.freedesktop.org/series/121225/
State : info
== Summary ==
Participating hosts:
bat-pvc-2
bat-atsm-2
bat-dg2-oem2
bat-adlp-7
Missing hosts results[0]:
Results: [IGTPW_9496](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9496/index.html)
[-- Attachment #2: Type: text/html, Size: 855 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add atomic DRM cursor hotspot test (rev4)
2023-08-02 11:12 [igt-dev] [PATCH v4 0/2] Add atomic DRM cursor hotspot test Albert Esteve
` (2 preceding siblings ...)
2023-08-02 12:58 ` [igt-dev] ○ CI.xeBAT: info for Add atomic DRM cursor hotspot test (rev4) Patchwork
@ 2023-08-02 13:08 ` Patchwork
2023-08-02 16:34 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-08-02 13:08 UTC (permalink / raw)
To: Albert Esteve; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7157 bytes --]
== Series Details ==
Series: Add atomic DRM cursor hotspot test (rev4)
URL : https://patchwork.freedesktop.org/series/121225/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13460 -> IGTPW_9496
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-adlp-6 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9496 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@requests:
- bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#8497])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/bat-mtlp-8/igt@i915_selftest@live@requests.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/bat-mtlp-8/igt@i915_selftest@live@requests.html
- bat-mtlp-6: [PASS][3] -> [DMESG-FAIL][4] ([i915#7269])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/bat-mtlp-6/igt@i915_selftest@live@requests.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/bat-mtlp-6/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@reset:
- bat-rpls-1: [PASS][5] -> [ABORT][6] ([i915#4983] / [i915#7461] / [i915#8347] / [i915#8384])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/bat-rpls-1/igt@i915_selftest@live@reset.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/bat-rpls-1/igt@i915_selftest@live@reset.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rplp-1: NOTRUN -> [ABORT][7] ([i915#8260] / [i915#8668])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html
#### Possible fixes ####
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-tgl-1115g4: [FAIL][8] ([i915#7940]) -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [DMESG-FAIL][10] ([i915#5334]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@migrate:
- bat-rpls-2: [DMESG-FAIL][12] ([i915#7699] / [i915#7913]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/bat-rpls-2/igt@i915_selftest@live@migrate.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/bat-rpls-2/igt@i915_selftest@live@migrate.html
- bat-atsm-1: [DMESG-FAIL][14] ([i915#7699] / [i915#7913]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/bat-atsm-1/igt@i915_selftest@live@migrate.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/bat-atsm-1/igt@i915_selftest@live@migrate.html
* igt@i915_selftest@live@mman:
- bat-rpls-2: [TIMEOUT][16] ([i915#6794] / [i915#7392]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/bat-rpls-2/igt@i915_selftest@live@mman.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/bat-rpls-2/igt@i915_selftest@live@mman.html
* igt@i915_selftest@live@slpc:
- bat-mtlp-8: [DMESG-WARN][18] ([i915#6367]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/bat-mtlp-8/igt@i915_selftest@live@slpc.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/bat-mtlp-8/igt@i915_selftest@live@slpc.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-8: [DMESG-FAIL][20] ([i915#6763]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@basic-s2idle-without-i915:
- bat-rpls-2: [WARN][22] ([i915#8747]) -> [PASS][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html
#### Warnings ####
* igt@i915_module_load@load:
- bat-adlp-11: [DMESG-WARN][24] ([i915#4423]) -> [ABORT][25] ([i915#4423])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/bat-adlp-11/igt@i915_module_load@load.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/bat-adlp-11/igt@i915_module_load@load.html
* igt@kms_psr@primary_mmap_gtt:
- bat-rplp-1: [ABORT][26] ([i915#8434] / [i915#8442] / [i915#8668]) -> [SKIP][27] ([i915#1072])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763
[i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794
[i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260
[i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
[i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384
[i915#8434]: https://gitlab.freedesktop.org/drm/intel/issues/8434
[i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
[i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8747]: https://gitlab.freedesktop.org/drm/intel/issues/8747
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7411 -> IGTPW_9496
CI-20190529: 20190529
CI_DRM_13460: a2835bad4eaa4425c3cb9eb2493d98837b0135f3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9496: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/index.html
IGT_7411: 7411
Testlist changes
----------------
+++ 216 lines
--- 215 lines
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/index.html
[-- Attachment #2: Type: text/html, Size: 8333 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Add atomic DRM cursor hotspot test (rev4)
2023-08-02 11:12 [igt-dev] [PATCH v4 0/2] Add atomic DRM cursor hotspot test Albert Esteve
` (3 preceding siblings ...)
2023-08-02 13:08 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-08-02 16:34 ` Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-08-02 16:34 UTC (permalink / raw)
To: Albert Esteve; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100260 bytes --]
== Series Details ==
Series: Add atomic DRM cursor hotspot test (rev4)
URL : https://patchwork.freedesktop.org/series/121225/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13460_full -> IGTPW_9496_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9496_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9496_full, please notify your bug team 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_9496/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9496_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@test-cursor:
- shard-dg2: NOTRUN -> [SKIP][1] +1 similar issue
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_async_flips@test-cursor.html
* {igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot} (NEW):
- shard-rkl: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-19/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-mtlp: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@prime_busy@hang-wait@bcs0:
- shard-snb: [PASS][6] -> [ABORT][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-snb1/igt@prime_busy@hang-wait@bcs0.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-snb7/igt@prime_busy@hang-wait@bcs0.html
* igt@tools_test@tools_test:
- shard-dg2: [PASS][8] -> [FAIL][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-8/igt@tools_test@tools_test.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@tools_test@tools_test.html
#### Warnings ####
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: [SKIP][10] ([i915#6228]) -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_async_flips@invalid-async-flip.html
New tests
---------
New tests have been introduced between CI_DRM_13460_full and IGTPW_9496_full:
### New IGT tests (1) ###
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- Statuses : 8 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9496_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8411])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-3/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@core_setmaster@master-drop-set-root:
- shard-dg2: [PASS][13] -> [FAIL][14] ([i915#6121])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-1/igt@core_setmaster@master-drop-set-root.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@core_setmaster@master-drop-set-root.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8414]) +11 similar issues
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-6/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@drm_fdinfo@busy-idle-check-all@vcs0:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8414]) +9 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-2/igt@drm_fdinfo@busy-idle-check-all@vcs0.html
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8414]) +4 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-17/igt@drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@fbdev@eof:
- shard-dg2: [PASS][18] -> [SKIP][19] ([i915#2582]) +2 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-5/igt@fbdev@eof.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@fbdev@eof.html
* igt@gem_bad_reloc@negative-reloc-bltcopy:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#3281])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-8/igt@gem_bad_reloc@negative-reloc-bltcopy.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#3281]) +2 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-18/igt@gem_bad_reloc@negative-reloc-lut.html
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#3281]) +5 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-1/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4873])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-2/igt@gem_caching@read-writes.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#5325])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-4/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-mtlp: [PASS][25] -> [FAIL][26] ([i915#6121] / [i915#7916])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-mtlp-4/igt@gem_ctx_exec@basic-nohangcheck.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#8555]) +1 similar issue
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-6/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#8555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#1099])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-snb4/igt@gem_ctx_persistence@processes.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#2575]) +117 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu: NOTRUN -> [SKIP][31] ([i915#280])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-4/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][32] ([i915#8898])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-snb5/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@sliced:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812]) +1 similar issue
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-12/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#6334])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-6/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#6344])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][36] -> [FAIL][37] ([i915#2846])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html
- shard-glk: [PASS][38] -> [FAIL][39] ([i915#2846])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-glk3/igt@gem_exec_fair@basic-deadline.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-glk5/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-throttle:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4473] / [i915#4771]) +1 similar issue
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-2/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#7697]) +1 similar issue
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-4/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@no-bsd:
- shard-dg2: [PASS][42] -> [SKIP][43] ([fdo#109283] / [i915#2575])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-5/igt@gem_exec_params@no-bsd.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_exec_params@no-bsd.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +2 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4860]) +1 similar issue
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-glk: NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-glk2/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@basic:
- shard-apl: NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#4613])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-apl4/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) +1 similar issue
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#4613])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#4613])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-4/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@random-engines:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#5775]) +3 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_lmem_swapping@random-engines.html
* igt@gem_media_vme:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#284])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-5/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4083])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-5/igt@gem_mmap@bad-object.html
* igt@gem_mmap@bad-size:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083]) +4 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-1/igt@gem_mmap@bad-size.html
* igt@gem_mmap_gtt@flink-race:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4077]) +12 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-6/igt@gem_mmap_gtt@flink-race.html
* igt@gem_partial_pwrite_pread@write:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#3282]) +1 similar issue
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-4/igt@gem_partial_pwrite_pread@write.html
* igt@gem_pread@exhaustion:
- shard-snb: NOTRUN -> [WARN][57] ([i915#2658])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-snb7/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][58] ([i915#2658])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-glk5/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3282]) +2 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-6/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4270])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-2/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-tglu: NOTRUN -> [SKIP][61] ([i915#4270]) +1 similar issue
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#4270])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-17/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_readwrite@new-obj:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-14/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428]) +3 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-4/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4079])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4885])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-7/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_swapping@non-threaded:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4077]) +2 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-19/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#3297])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-14/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#3297] / [i915#4880])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3297]) +2 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-6/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#3297])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen3_render_linear_blits:
- shard-dg2: NOTRUN -> [SKIP][73] ([fdo#109289])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-5/igt@gen3_render_linear_blits.html
* igt@gen9_exec_parse@allowed-all:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#2527] / [i915#2856])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-4/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-snb: NOTRUN -> [SKIP][75] ([fdo#109271]) +177 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-snb1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#2856]) +3 similar issues
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-5/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@secure-batches:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#2527])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-7/igt@gen9_exec_parse@secure-batches.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#2527])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-18/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@resize-bar:
- shard-dg2: [PASS][79] -> [SKIP][80] ([i915#5775])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-10/igt@i915_module_load@resize-bar.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#7091])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][82] ([i915#7561])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-5/igt@i915_pm_backlight@fade-with-dpms.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [PASS][83] -> [SKIP][84] ([fdo#109271])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-apl6/igt@i915_pm_dc@dc9-dpms.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-apl4/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][85] ([fdo#109289]) +1 similar issue
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- shard-dg1: NOTRUN -> [SKIP][86] ([fdo#109289])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-15/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-dg1: [PASS][87] -> [FAIL][88] ([i915#3591])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][89] -> [SKIP][90] ([i915#5174]) +6 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@gem-execbuf-stress:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#5174])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@i915_pm_rpm@gem-execbuf-stress.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#1397])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-dg1: [PASS][93] -> [FAIL][94] ([i915#7940])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg1-14/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-18/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-tglu: [PASS][95] -> [FAIL][96] ([i915#7940])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-tglu-10/igt@i915_pm_rpm@system-suspend-execbuf.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-9/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#6621])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-1/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#8437])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-6/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#6188])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-6/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-snb: NOTRUN -> [DMESG-WARN][100] ([i915#8841]) +7 similar issues
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-snb4/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#4212])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-1/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#2575] / [i915#5190])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-yf-tiled-legacy:
- shard-dg2: [PASS][103] -> [SKIP][104] ([i915#2575] / [i915#5190])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-5/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#4212])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-13/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#8502] / [i915#8709]) +11 similar issues
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][107] ([i915#8247]) +3 similar issues
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][108] ([i915#8561]) +3 similar issues
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-1/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#1769])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-6/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][110] ([fdo#111614]) +1 similar issue
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-8/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-tglu: NOTRUN -> [SKIP][111] ([i915#5286])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-8/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-mtlp: [PASS][112] -> [FAIL][113] ([i915#3743])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: NOTRUN -> [FAIL][114] ([i915#3743]) +2 similar issues
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5286])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][116] ([fdo#111614] / [i915#3638])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#3638])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-12/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-dg2: [PASS][118] -> [SKIP][119] ([fdo#109315]) +28 similar issues
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-6/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][120] ([fdo#111615]) +8 similar issues
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5190])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
- shard-rkl: NOTRUN -> [SKIP][122] ([fdo#110723]) +1 similar issue
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-15/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][124] ([fdo#111615])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-16/igt@kms_big_fb@yf-tiled-addfb.html
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6187]) +1 similar issue
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#3886] / [i915#6095]) +6 similar issues
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#3689] / [i915#5354] / [i915#6095])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-8/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][128] ([fdo#109271] / [i915#3886]) +2 similar issues
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-glk3/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-aux-stride-4_tiled_mtl_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#5354])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-8/igt@kms_ccs@pipe-b-bad-aux-stride-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#5354] / [i915#6095]) +5 similar issues
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-13/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-13/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#5354] / [i915#6095]) +9 similar issues
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-14/igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-primary-basic-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][134] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-2/igt@kms_ccs@pipe-c-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#3689] / [i915#3886] / [i915#5354])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#5354] / [i915#6095]) +5 similar issues
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-3/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#5354]) +8 similar issues
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-1/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs_cc:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6095]) +20 similar issues
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-1/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-mtlp: NOTRUN -> [SKIP][139] ([fdo#111827])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-1/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#7828])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#7828]) +2 similar issues
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-15/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#7828]) +4 similar issues
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-1/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#7828])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@legacy:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#6944])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy@pipe-a-dp-1:
- shard-apl: NOTRUN -> [TIMEOUT][145] ([i915#7173])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-apl2/igt@kms_content_protection@legacy@pipe-a-dp-1.html
* igt@kms_content_protection@mei_interface:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#8063])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-1/igt@kms_content_protection@mei_interface.html
* igt@kms_content_protection@uevent:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#7118])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-6/igt@kms_content_protection@uevent.html
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#7116])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-15/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][149] ([fdo#109279] / [i915#3359])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#3359])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3359]) +1 similar issue
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#8814]) +1 similar issue
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#3555]) +1 similar issue
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#3555]) +1 similar issue
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-snb: NOTRUN -> [SKIP][155] ([fdo#109271] / [fdo#111767]) +2 similar issues
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-snb5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-mtlp: [PASS][156] -> [FAIL][157] ([i915#8248]) +1 similar issue
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-mtlp-4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3546]) +1 similar issue
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#8812])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-19/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3637]) +4 similar issues
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-tglu: NOTRUN -> [SKIP][161] ([fdo#109274] / [i915#3637])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-4/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][162] ([fdo#111825]) +1 similar issue
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-4/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1:
- shard-mtlp: [PASS][163] -> [DMESG-WARN][164] ([i915#1982])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-mtlp-7/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#2587] / [i915#2672])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][166] ([fdo#109315]) +9 similar issues
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#8810]) +1 similar issue
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#2672]) +4 similar issues
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][169] ([fdo#109315] / [i915#5190]) +2 similar issues
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#2672]) +1 similar issue
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-snb: [PASS][171] -> [SKIP][172] ([fdo#109271])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#1825]) +25 similar issues
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][174] ([fdo#109280]) +3 similar issues
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#5460])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-dg1: NOTRUN -> [SKIP][176] ([fdo#111825]) +12 similar issues
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#8708])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][178] ([fdo#111825] / [i915#1825]) +8 similar issues
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- shard-apl: NOTRUN -> [SKIP][179] ([fdo#109271]) +13 similar issues
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-apl6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3458]) +1 similar issue
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#3458]) +2 similar issues
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8708]) +3 similar issues
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#8708])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#3023]) +5 similar issues
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-dg2: [PASS][185] -> [SKIP][186] ([i915#2575]) +199 similar issues
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-2/igt@kms_getfb@getfb2-accept-ccs.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_hdr@static-toggle:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#8228])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-8/igt@kms_hdr@static-toggle.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#8821])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-3/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][189] ([i915#8292])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#5176]) +7 similar issues
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#5176]) +15 similar issues
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#5176]) +7 similar issues
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#5235]) +7 similar issues
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#5235]) +11 similar issues
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#5235]) +7 similar issues
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@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][196] ([i915#5235]) +23 similar issues
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][197] ([fdo#109271]) +56 similar issues
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-glk4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-hdmi-a-1.html
* igt@kms_prime@basic-crc-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#6524])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-8/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#2920])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-glk: NOTRUN -> [SKIP][200] ([fdo#109271] / [i915#658])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-glk3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][201] ([fdo#111068] / [i915#658])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
- shard-dg1: NOTRUN -> [SKIP][202] ([fdo#111068] / [i915#658])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-14/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#4348]) +1 similar issue
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-4/igt@kms_psr2_su@page_flip-nv12.html
- shard-apl: NOTRUN -> [SKIP][204] ([fdo#109271] / [i915#658])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-apl4/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@basic:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#1072]) +2 similar issues
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-14/igt@kms_psr@basic.html
* igt@kms_psr@psr2_sprite_render:
- shard-tglu: NOTRUN -> [SKIP][206] ([fdo#110189]) +3 similar issues
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-3/igt@kms_psr@psr2_sprite_render.html
* igt@kms_psr@sprite_blt:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#1072])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-1/igt@kms_psr@sprite_blt.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#4235]) +1 similar issue
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-6/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_selftest@drm_format:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#8661])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-2/igt@kms_selftest@drm_format.html
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#8661])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-16/igt@kms_selftest@drm_format.html
* igt@kms_selftest@drm_format_helper:
- shard-glk: NOTRUN -> [SKIP][211] ([fdo#109271] / [i915#8661])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-glk6/igt@kms_selftest@drm_format_helper.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
- shard-dg2: [PASS][212] -> [FAIL][213] ([fdo#103375])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-8/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-5/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
* igt@kms_vblank@pipe-c-ts-continuation-idle:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#4070] / [i915#6768]) +2 similar issues
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-1/igt@kms_vblank@pipe-c-ts-continuation-idle.html
* igt@kms_vblank@pipe-d-query-idle-hang:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#4070] / [i915#533] / [i915#6768])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-1/igt@kms_vblank@pipe-d-query-idle-hang.html
* igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend:
- shard-tglu: [PASS][216] -> [ABORT][217] ([i915#5122])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-tglu-8/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-3/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#8808])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-7/igt@kms_vrr@flip-suspend.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][219] ([fdo#109271] / [i915#2437])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-glk8/igt@kms_writeback@writeback-fb-id.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: NOTRUN -> [SKIP][220] ([fdo#109289]) +3 similar issues
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-4/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#2433])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html
- shard-dg1: NOTRUN -> [SKIP][222] ([fdo#109289] / [i915#2433])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-12/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@frequency:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#5608]) +9 similar issues
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@perf_pmu@frequency.html
* igt@perf_pmu@invalid-open:
- shard-dg2: [PASS][224] -> [SKIP][225] ([i915#5608]) +2 similar issues
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-2/igt@perf_pmu@invalid-open.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@perf_pmu@invalid-open.html
* igt@prime_udl:
- shard-rkl: NOTRUN -> [SKIP][226] ([fdo#109291])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-4/igt@prime_udl.html
- shard-dg1: NOTRUN -> [SKIP][227] ([fdo#109291])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-13/igt@prime_udl.html
* igt@prime_vgem@coherency-blt:
- shard-mtlp: NOTRUN -> [FAIL][228] ([i915#8445])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-5/igt@prime_vgem@coherency-blt.html
* igt@v3d/v3d_get_bo_offset@create-get-offsets:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#2575]) +3 similar issues
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-14/igt@v3d/v3d_get_bo_offset@create-get-offsets.html
* igt@v3d/v3d_get_param@get-bad-flags:
- shard-rkl: NOTRUN -> [SKIP][230] ([fdo#109315]) +4 similar issues
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-7/igt@v3d/v3d_get_param@get-bad-flags.html
* igt@v3d/v3d_get_param@get-bad-param:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#2575]) +8 similar issues
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-2/igt@v3d/v3d_get_param@get-bad-param.html
* igt@v3d/v3d_wait_bo@bad-bo:
- shard-tglu: NOTRUN -> [SKIP][232] ([fdo#109315] / [i915#2575]) +1 similar issue
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-2/igt@v3d/v3d_wait_bo@bad-bo.html
* igt@vc4/vc4_perfmon@create-single-perfmon:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#7711]) +4 similar issues
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-1/igt@vc4/vc4_perfmon@create-single-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#7711])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-1/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#7711])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-17/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
* igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#2575])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-7/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#7711])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-5/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@api_intel_allocator@default-alignment:
- shard-dg2: [SKIP][238] ([fdo#109315]) -> [PASS][239] +26 similar issues
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@api_intel_allocator@default-alignment.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-6/igt@api_intel_allocator@default-alignment.html
* igt@core_hotunplug@unbind-rebind:
- shard-dg2: [SKIP][240] ([i915#6767]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@core_hotunplug@unbind-rebind.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-1/igt@core_hotunplug@unbind-rebind.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][242] ([i915#7742]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@fbdev@pan:
- shard-dg2: [SKIP][244] ([i915#2582]) -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@fbdev@pan.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-6/igt@fbdev@pan.html
* igt@gem_ctx_isolation@preservation-s3@vcs1:
- shard-dg2: [FAIL][246] ([fdo#103375]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-1/igt@gem_ctx_isolation@preservation-s3@vcs1.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-8/igt@gem_ctx_isolation@preservation-s3@vcs1.html
* igt@gem_eio@hibernate:
- shard-dg1: [ABORT][248] ([i915#4391] / [i915#7975] / [i915#8213]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg1-14/igt@gem_eio@hibernate.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-19/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-contexts-10ms:
- shard-mtlp: [ABORT][250] ([i915#7941]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-mtlp-6/igt@gem_eio@in-flight-contexts-10ms.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][252] ([i915#5784]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg1-15/igt@gem_eio@reset-stress.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-12/igt@gem_eio@reset-stress.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-dg2: [TIMEOUT][254] ([i915#3778] / [i915#7016] / [i915#7921]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-3/igt@gem_exec_endless@dispatch@bcs0.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-10/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-rkl: [FAIL][256] ([i915#2842]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-rkl-2/igt@gem_exec_fair@basic-none-share@rcs0.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-apl: [FAIL][258] ([i915#2842]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_params@no-blt:
- shard-dg2: [SKIP][260] ([fdo#109283] / [i915#2575]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_exec_params@no-blt.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-1/igt@gem_exec_params@no-blt.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-dg2: [SKIP][262] ([i915#5775]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_lmem_evict@dontneed-evict-race.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-8/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][264] ([i915#5493]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_vm_create@execbuf:
- shard-dg2: [SKIP][266] ([i915#2575]) -> [PASS][267] +210 similar issues
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_vm_create@execbuf.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-5/igt@gem_vm_create@execbuf.html
* igt@i915_hangman@gt-engine-hang@vcs0:
- shard-mtlp: [FAIL][268] ([i915#7069]) -> [PASS][269] +1 similar issue
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-mtlp-3/igt@i915_hangman@gt-engine-hang@vcs0.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-6/igt@i915_hangman@gt-engine-hang@vcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][270] ([i915#8489] / [i915#8668]) -> [PASS][271]
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-dg1: [FAIL][272] ([i915#3591]) -> [PASS][273] +1 similar issue
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-dg1: [SKIP][274] ([i915#1397]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-13/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@gem-execbuf-stress@lmem0:
- shard-dg1: [FAIL][276] ([i915#7940]) -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg1-15/igt@i915_pm_rpm@gem-execbuf-stress@lmem0.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-19/igt@i915_pm_rpm@gem-execbuf-stress@lmem0.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][278] ([i915#1397]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-rkl-4/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@i915_pm_rpm@sysfs-read:
- shard-dg2: [SKIP][280] ([i915#5174]) -> [PASS][281] +6 similar issues
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@i915_pm_rpm@sysfs-read.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-3/igt@i915_pm_rpm@sysfs-read.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-tglu: [FAIL][282] ([i915#7940]) -> [PASS][283] +2 similar issues
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-tglu-2/igt@i915_pm_rpm@system-suspend-devices.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-4/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_selftest@live@slpc:
- shard-mtlp: [DMESG-WARN][284] ([i915#6367]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-mtlp-2/igt@i915_selftest@live@slpc.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-5/igt@i915_selftest@live@slpc.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][286] ([i915#5138]) -> [PASS][287] +1 similar issue
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-mtlp: [FAIL][288] ([i915#3743]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-d-edp-1:
- shard-mtlp: [DMESG-WARN][290] ([i915#1982]) -> [PASS][291]
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-d-edp-1.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-d-edp-1.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][292] ([i915#2346]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][294] ([i915#2346]) -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1:
- shard-glk: [FAIL][296] ([i915#79]) -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-glk9/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [FAIL][298] ([IGT#2]) -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-2/igt@kms_sysfs_edid_timing.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_sysfs_edid_timing.html
- shard-dg1: [FAIL][300] ([IGT#2] / [i915#6493]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg1-14/igt@kms_sysfs_edid_timing.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-13/igt@kms_sysfs_edid_timing.html
* igt@perf@create-destroy-userspace-config:
- shard-dg2: [SKIP][302] ([i915#5608]) -> [PASS][303] +5 similar issues
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@perf@create-destroy-userspace-config.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-8/igt@perf@create-destroy-userspace-config.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-dg1: [FAIL][304] ([i915#4349]) -> [PASS][305] +2 similar issues
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg1-17/igt@perf_pmu@busy-double-start@vcs1.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg1-12/igt@perf_pmu@busy-double-start@vcs1.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: [SKIP][306] ([i915#2575]) -> [SKIP][307] ([i915#8411])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@api_intel_bb@blit-reloc-purge-cache.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg2: [FAIL][308] -> [SKIP][309] ([i915#7701])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@device_reset@unbind-cold-reset-rebind.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-5/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg2: [SKIP][310] ([i915#5608]) -> [SKIP][311] ([i915#8414]) +1 similar issue
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@drm_fdinfo@virtual-busy-all.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-2/igt@drm_fdinfo@virtual-busy-all.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-dg2: [SKIP][312] ([i915#8414]) -> [SKIP][313] ([i915#5608]) +2 similar issues
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-5/igt@drm_fdinfo@virtual-busy-hang.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@drm_fdinfo@virtual-busy-hang.html
* igt@feature_discovery@display-2x:
- shard-dg2: [SKIP][314] ([i915#1839]) -> [SKIP][315] ([i915#2575])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-6/igt@feature_discovery@display-2x.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@feature_discovery@display-2x.html
* igt@gem_busy@semaphore:
- shard-dg2: [SKIP][316] ([i915#2575]) -> [SKIP][317] ([i915#3936])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_busy@semaphore.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-5/igt@gem_busy@semaphore.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2: [SKIP][318] ([i915#7697]) -> [SKIP][319] ([i915#2575])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-2/igt@gem_close_race@multigpu-basic-process.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: [SKIP][320] ([i915#2575]) -> [SKIP][321] ([i915#7697]) +1 similar issue
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-8/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: [SKIP][322] ([i915#2575]) -> [SKIP][323] ([i915#8555])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-stop.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: [SKIP][324] ([i915#280]) -> [SKIP][325] ([i915#2575])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-6/igt@gem_ctx_sseu@mmap-args.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: [SKIP][326] ([i915#4812]) -> [SKIP][327] ([i915#2575]) +2 similar issues
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-1/igt@gem_exec_balancer@bonded-false-hang.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: [SKIP][328] ([i915#4771]) -> [SKIP][329] ([i915#2575])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-1/igt@gem_exec_balancer@bonded-pair.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: [SKIP][330] ([i915#2575]) -> [SKIP][331] ([i915#4771])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_exec_balancer@bonded-sync.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-2/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: [SKIP][332] ([i915#2575]) -> [SKIP][333] ([i915#4812]) +2 similar issues
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-8/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: [SKIP][334] ([i915#4036]) -> [SKIP][335] ([i915#2575])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-5/igt@gem_exec_balancer@invalid-bonds.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_fair@basic-none-vip:
- shard-dg2: [SKIP][336] ([i915#2575]) -> [SKIP][337] ([i915#3539] / [i915#4852])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_exec_fair@basic-none-vip.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-2/igt@gem_exec_fair@basic-none-vip.html
* igt@gem_exec_fair@basic-pace@vcs1:
- shard-tglu: [FAIL][338] ([i915#2876]) -> [FAIL][339] ([i915#2842])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-tglu-5/igt@gem_exec_fair@basic-pace@vcs1.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-4/igt@gem_exec_fair@basic-pace@vcs1.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: [SKIP][340] ([i915#3539]) -> [SKIP][341] ([i915#2575])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-1/igt@gem_exec_fair@basic-throttle.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: [SKIP][342] ([i915#3539] / [i915#4852]) -> [SKIP][343] ([i915#2575]) +7 similar issues
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-10/igt@gem_exec_flush@basic-uc-ro-default.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: [SKIP][344] ([i915#2575]) -> [SKIP][345] ([i915#3281]) +11 similar issues
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-read.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-2/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: [SKIP][346] ([i915#3281]) -> [SKIP][347] ([i915#2575]) +13 similar issues
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-8/igt@gem_exec_reloc@basic-write-read-active.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: [SKIP][348] ([i915#2575]) -> [SKIP][349] ([i915#4537] / [i915#4812])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: [SKIP][350] ([i915#4537] / [i915#4812]) -> [SKIP][351] ([i915#2575]) +1 similar issue
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_whisper@basic-contexts-priority-all:
- shard-mtlp: [ABORT][352] ([i915#7392] / [i915#8131]) -> [TIMEOUT][353] ([i915#7392])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-priority-all.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-priority-all.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: [SKIP][354] ([i915#2575]) -> [SKIP][355] ([i915#4860]) +2 similar issues
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-x.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: [SKIP][356] ([i915#4860]) -> [SKIP][357] ([i915#2575]) +3 similar issues
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-10/igt@gem_fenced_exec_thrash@2-spare-fences.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_media_fill@media-fill:
- shard-dg2: [SKIP][358] ([i915#2575]) -> [SKIP][359] ([i915#8289])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_media_fill@media-fill.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-2/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: [SKIP][360] ([i915#4077]) -> [SKIP][361] ([i915#2575]) +19 similar issues
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-2/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: [SKIP][362] ([i915#4083]) -> [SKIP][363] ([i915#2575]) +4 similar issues
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-8/igt@gem_mmap_wc@bad-object.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@close:
- shard-dg2: [SKIP][364] ([i915#2575]) -> [SKIP][365] ([i915#4083]) +3 similar issues
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_mmap_wc@close.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-1/igt@gem_mmap_wc@close.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: [SKIP][366] ([i915#3282]) -> [SKIP][367] ([i915#2575]) +5 similar issues
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-2/igt@gem_partial_pwrite_pread@reads.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pwrite@basic-exhaustion:
- shard-dg2: [SKIP][368] ([i915#2575]) -> [SKIP][369] ([i915#3282]) +4 similar issues
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_pwrite@basic-exhaustion.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-1/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-context-2:
- shard-dg2: [SKIP][370] ([i915#4270]) -> [SKIP][371] ([i915#2575]) +5 similar issues
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-2/igt@gem_pxp@create-regular-context-2.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: [SKIP][372] ([i915#2575]) -> [SKIP][373] ([i915#4270]) +4 similar issues
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_pxp@display-protected-crc.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-5/igt@gem_pxp@display-protected-crc.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-dg2: [SKIP][374] ([i915#2575] / [i915#5190]) -> [SKIP][375] ([i915#5190]) +8 similar issues
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-1/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: [SKIP][376] ([i915#2575]) -> [SKIP][377] ([i915#4079]) +1 similar issue
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: [FAIL][378] ([i915#5889]) -> [SKIP][379] ([i915#2575])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-1/igt@gem_spin_batch@spin-all-new.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_spin_batch@spin-all-new.html
* igt@gem_tiled_blits@basic:
- shard-dg2: [SKIP][380] ([i915#2575]) -> [SKIP][381] ([i915#4077]) +10 similar issues
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_tiled_blits@basic.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-3/igt@gem_tiled_blits@basic.html
* igt@gem_unfence_active_buffers:
- shard-dg2: [SKIP][382] ([i915#4879]) -> [SKIP][383] ([i915#2575])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-1/igt@gem_unfence_active_buffers.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: [SKIP][384] ([i915#2575]) -> [SKIP][385] ([i915#3297]) +3 similar issues
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_userptr_blits@dmabuf-unsync.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-5/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: [SKIP][386] ([i915#3297] / [i915#4880]) -> [SKIP][387] ([i915#2575])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: [SKIP][388] ([i915#2575]) -> [SKIP][389] ([i915#3297] / [i915#4880])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: [SKIP][390] ([i915#2575]) -> [SKIP][391] ([i915#3297] / [i915#4958])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gem_userptr_blits@sd-probe.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: [SKIP][392] ([i915#3297]) -> [SKIP][393] ([i915#2575]) +1 similar issue
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-6/igt@gem_userptr_blits@unsync-unmap.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@vma-merge:
- shard-dg2: [FAIL][394] ([i915#3318]) -> [SKIP][395] ([i915#2575])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-1/igt@gem_userptr_blits@vma-merge.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gem_userptr_blits@vma-merge.html
* igt@gen3_render_tiledx_blits:
- shard-dg2: [SKIP][396] ([i915#2575]) -> [SKIP][397] ([fdo#109289]) +4 similar issues
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gen3_render_tiledx_blits.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-6/igt@gen3_render_tiledx_blits.html
* igt@gen9_exec_parse@allowed-all:
- shard-dg2: [SKIP][398] ([i915#2856]) -> [SKIP][399] ([i915#2575]) +2 similar issues
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-6/igt@gen9_exec_parse@allowed-all.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: [SKIP][400] ([i915#2575]) -> [SKIP][401] ([i915#2856]) +5 similar issues
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@gen9_exec_parse@valid-registers.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-8/igt@gen9_exec_parse@valid-registers.html
* igt@i915_fb_tiling:
- shard-dg2: [SKIP][402] ([i915#4881]) -> [SKIP][403] ([i915#2575])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-5/igt@i915_fb_tiling.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@i915_fb_tiling.html
* igt@i915_pm_backlight@bad-brightness:
- shard-dg2: [SKIP][404] ([i915#2575]) -> [SKIP][405] ([i915#5354] / [i915#7561])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@i915_pm_backlight@bad-brightness.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-8/igt@i915_pm_backlight@bad-brightness.html
* igt@i915_pm_backlight@basic-brightness:
- shard-dg2: [SKIP][406] ([i915#5354] / [i915#7561]) -> [SKIP][407] ([i915#2575]) +1 similar issue
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-5/igt@i915_pm_backlight@basic-brightness.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_dc@dc3co-vpb-simulation:
- shard-dg2: [SKIP][408] ([i915#658]) -> [SKIP][409] ([i915#2575])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-2/igt@i915_pm_dc@dc3co-vpb-simulation.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@i915_pm_dc@dc3co-vpb-simulation.html
* igt@i915_pm_dc@dc5-psr:
- shard-dg2: [SKIP][410] ([i915#2575]) -> [SKIP][411] ([i915#658]) +1 similar issue
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@i915_pm_dc@dc5-psr.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-2/igt@i915_pm_dc@dc5-psr.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-tglu: [WARN][412] ([i915#2681]) -> [FAIL][413] ([i915#2681] / [i915#3591])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@i915_pm_rpm@fences:
- shard-dg2: [SKIP][414] ([i915#4077]) -> [SKIP][415] ([i915#5174]) +2 similar issues
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-6/igt@i915_pm_rpm@fences.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@i915_pm_rpm@fences.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][416] ([i915#5174]) -> [SKIP][417] ([i915#1397]) +1 similar issue
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-5/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: [SKIP][418] ([i915#6621]) -> [SKIP][419] ([i915#2575])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-2/igt@i915_pm_rps@min-max-config-loaded.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: [SKIP][420] ([i915#2575]) -> [SKIP][421] ([i915#4387])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@i915_pm_sseu@full-enable.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-1/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-dg2: [SKIP][422] ([fdo#109303]) -> [SKIP][423] ([i915#2575])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-5/igt@i915_query@query-topology-known-pci-ids.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@i915_query@query-topology-known-pci-ids.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: [SKIP][424] ([i915#5190]) -> [SKIP][425] ([i915#2575] / [i915#5190]) +13 similar issues
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: [SKIP][426] ([i915#2575]) -> [SKIP][427] ([i915#4212])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@kms_addfb_basic@basic-x-tiled-legacy.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-10/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: [SKIP][428] ([i915#2575] / [i915#5190]) -> [SKIP][429] ([i915#4215] / [i915#5190])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: [SKIP][430] ([i915#4212]) -> [SKIP][431] ([i915#2575])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: [SKIP][432] ([i915#404]) -> [SKIP][433] ([i915#2575])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: [SKIP][434] ([i915#1769] / [i915#3555]) -> [SKIP][435] ([i915#2575])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2: [SKIP][436] ([fdo#111614]) -> [SKIP][437] ([fdo#109315]) +1 similar issue
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-10/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: [SKIP][438] ([fdo#109315]) -> [SKIP][439] ([fdo#111614]) +5 similar issues
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2: [SKIP][440] ([fdo#109315] / [i915#5190]) -> [SKIP][441] ([i915#5190]) +6 similar issues
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: [SKIP][442] ([i915#5190]) -> [SKIP][443] ([fdo#109315] / [i915#5190]) +7 similar issues
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2: [SKIP][444] ([i915#4538] / [i915#5190]) -> [SKIP][445] ([fdo#109315] / [i915#5190]) +6 similar issues
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: [SKIP][446] ([fdo#109315] / [i915#5190]) -> [SKIP][447] ([i915#4538] / [i915#5190]) +6 similar issues
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_joiner@basic:
- shard-dg2: [SKIP][448] ([i915#2705]) -> [SKIP][449] ([fdo#109315]) +1 similar issue
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-8/igt@kms_big_joiner@basic.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_big_joiner@basic.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs:
- shard-dg2: [SKIP][450] ([i915#2575]) -> [SKIP][451] ([i915#3689] / [i915#5354]) +19 similar issues
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs:
- shard-dg2: [SKIP][452] ([i915#5354]) -> [SKIP][453] ([i915#2575]) +23 similar issues
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-8/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: [SKIP][454] ([i915#2575]) -> [SKIP][455] ([i915#3689] / [i915#3886] / [i915#5354]) +10 similar issues
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-6/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
- shard-dg2: [SKIP][456] ([i915#3689] / [i915#3886] / [i915#5354]) -> [SKIP][457] ([i915#2575]) +6 similar issues
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-2/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs:
- shard-dg2: [SKIP][458] ([i915#3689] / [i915#5354]) -> [SKIP][459] ([i915#2575]) +26 similar issues
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-2/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-4_tiled_mtl_mc_ccs:
- shard-dg2: [SKIP][460] ([i915#2575]) -> [SKIP][461] ([i915#5354]) +21 similar issues
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@kms_ccs@pipe-d-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-6/igt@kms_ccs@pipe-d-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2: [SKIP][462] ([fdo#111827]) -> [SKIP][463] ([i915#2575]) +1 similar issue
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-10/igt@kms_chamelium_color@ctm-0-50.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2: [SKIP][464] ([i915#2575]) -> [SKIP][465] ([fdo#111827])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@kms_chamelium_color@ctm-red-to-blue.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-6/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: [SKIP][466] ([i915#2575]) -> [SKIP][467] ([i915#7828]) +10 similar issues
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-fast.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-10/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2: [SKIP][468] ([i915#7828]) -> [SKIP][469] ([i915#2575]) +9 similar issues
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-8/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: [SKIP][470] ([i915#3299]) -> [SKIP][471] ([i915#2575])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-0.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: [SKIP][472] ([i915#2575]) -> [SKIP][473] ([i915#3299])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@kms_content_protection@dp-mst-type-1.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-6/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@mei_interface:
- shard-dg2: [SKIP][474] ([i915#2575]) -> [SKIP][475] ([i915#7118]) +1 similar issue
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13460/shard-dg2-11/igt@kms_content_protection@mei_interface.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/shard-dg2-2/igt@kms_content_pro
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9496/index.html
[-- Attachment #2: Type: text/html, Size: 109405 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-08-02 16:34 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-02 11:12 [igt-dev] [PATCH v4 0/2] Add atomic DRM cursor hotspot test Albert Esteve
2023-08-02 11:12 ` [igt-dev] [PATCH v4 1/2] igt_kms: add hotspot plane property Albert Esteve
2023-08-02 11:12 ` [igt-dev] [PATCH v4 2/2] kms_cursor_legacy: modeset-atomic-cursor-hotspot Albert Esteve
2023-08-02 12:58 ` [igt-dev] ○ CI.xeBAT: info for Add atomic DRM cursor hotspot test (rev4) Patchwork
2023-08-02 13:08 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-08-02 16:34 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox