* [PATCH i-g-t v3] tests/xe_debugfs: add uc debugfs validation and read tests
@ 2026-07-17 7:52 Sobin Thomas
2026-07-17 9:04 ` ✓ Xe.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Sobin Thomas @ 2026-07-17 7:52 UTC (permalink / raw)
To: igt-dev, daniele.ceraolospurio
Add coverage for GT-specific debugfs entries by introducing a new
gt-dir subtest that validates the presence of required files in the
GT debugfs hierarchy. The test currently verifies the existence of
the following debugfs nodes:
- uc/gsc_info
- uc/huc_info
- uc/guc_info
- uc/guc_pc
These additions improve validation of Xe GT debugfs interfaces and
provide basic functional coverage for the GSC information debugfs node.
v2: Add support for guc and huc info (Daniele)
v3: Added checks for the device nodes.
Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
---
tests/intel/xe_debugfs.c | 120 ++++++++++++++++++++++++++++++++++++++-
1 file changed, 119 insertions(+), 1 deletion(-)
diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c
index da482157e..e7d89ec9d 100644
--- a/tests/intel/xe_debugfs.c
+++ b/tests/intel/xe_debugfs.c
@@ -451,6 +451,32 @@ skip:
igt_skip("Failed to open debugfs directory\n");
}
+/**
+ * SUBTEST: gt-dir
+ * Description: Check required debugfs devnodes exist in the GT debugfs directory
+ */
+static void test_gt_dir(struct xe_device *xe_dev, unsigned int gt)
+{
+ const struct check_entry expected_files[] = {
+ { "uc/gsc_info", O_RDONLY },
+ { "uc/huc_info", O_RDONLY },
+ { "uc/guc_info", O_RDONLY },
+ { "uc/guc_pc", O_RDONLY },
+ };
+ int debugfs_fd = igt_debugfs_gt_dir(xe_dev->fd, gt);
+ int missing_count;
+
+ igt_skip_on_f(debugfs_fd < 0, "Failed to open debugfs directory\n");
+
+ missing_count = debugfs_validate_entries(xe_dev, debugfs_fd, expected_files,
+ ARRAY_SIZE(expected_files));
+
+ close(debugfs_fd);
+
+ igt_fail_on_f(missing_count > 0, "Found %d missing debugfs files (see warnings above)\n",
+ missing_count);
+}
+
/**
* SUBTEST: tile-dir
* Description: Check required debugfs devnodes exist in the tile debugfs directory
@@ -595,6 +621,71 @@ static void check_gt_reg_sr(int fd, int gt)
igt_assert_eq(problems, 0);
}
+static void test_uc_info_read(struct xe_device *xe_dev, unsigned int gt, const char *node,
+ bool mandatory)
+{
+ int debugfs_fd = igt_debugfs_gt_dir(xe_dev->fd, gt);
+ char *buf;
+
+ debugfs_fd = igt_debugfs_gt_dir(xe_dev->fd, gt);
+ igt_skip_on_f(debugfs_fd < 0, "Failed to open debugfs directory\n");
+
+ if (faccessat(debugfs_fd, node, F_OK, 0) < 0) {
+ close(debugfs_fd);
+ igt_fail_on_f(mandatory,
+ "Mandatory debugfs node %s is missing on GT-%u\n",
+ node, gt);
+
+ igt_skip("%s debugfs node not present on GT-%u\n",
+ node, gt);
+ }
+ buf = igt_sysfs_get(debugfs_fd, node);
+
+ igt_info("Successfully read %s: %zu bytes\n%s\n", node, strlen(buf), buf);
+
+ close(debugfs_fd);
+ igt_assert_f(buf, "Failed to read %s debugfs file\n", node);
+ igt_assert_f(buf[0] != '\0', "%s debugfs file is empty\n", node);
+ free(buf);
+}
+
+/**
+ * SUBTEST: gsc-info-read
+ * Description: Check GSC info debugfs devnode contents
+ */
+static void test_gsc_info_read(struct xe_device *xe_dev, unsigned int gt)
+{
+ test_uc_info_read(xe_dev, gt, "uc/gsc_info", false);
+}
+
+/**
+ * SUBTEST: huc-info-read
+ * Description: Check HUC info debugfs devnode contents
+ */
+static void test_huc_info_read(struct xe_device *xe_dev, unsigned int gt)
+{
+ test_uc_info_read(xe_dev, gt, "uc/huc_info", false);
+}
+
+/**
+ * SUBTEST: guc-pc-read
+ * Description: Read the guc pc info from the debugfs node contents
+ */
+
+static void test_guc_pc_info(struct xe_device *xe_dev, unsigned int gt)
+{
+ test_uc_info_read(xe_dev, gt, "uc/guc_pc", true);
+}
+
+/**
+ * SUBTEST: guc-info-read
+ * Description: Check GUC info debugfs devnode contents
+ */
+static void test_guc_info_read(struct xe_device *xe_dev, unsigned int gt)
+{
+ test_uc_info_read(xe_dev, gt, "uc/guc_info", true);
+}
+
const char *help_str =
" --warn-not-hit|--w\tWarn about devfs nodes that have no tests";
@@ -619,8 +710,9 @@ static int opt_handler(int option, int option_index, void *input)
int igt_main_args("", long_options, help_str, opt_handler, NULL)
{
struct xe_device *xe_dev;
+ unsigned int gt;
unsigned int t;
- int fd = -1, gt;
+ int fd = -1;
igt_fixture() {
fd = drm_open_driver_master(DRIVER_XE);
@@ -633,6 +725,12 @@ int igt_main_args("", long_options, help_str, opt_handler, NULL)
igt_subtest("root-dir")
test_root_dir(xe_dev);
+ igt_describe("Check required debugfs devnodes exist in the GT debugfs directory.");
+ igt_subtest_with_dynamic("gt-dir")
+ xe_for_each_gt(fd, gt)
+ igt_dynamic_f("gt-%u", gt)
+ test_gt_dir(xe_dev, gt);
+
igt_describe("Check required debugfs devnodes exist in the tile debugfs directory.");
igt_subtest_with_dynamic("tile-dir")
xe_for_each_tile(fd, t)
@@ -648,6 +746,26 @@ int igt_main_args("", long_options, help_str, opt_handler, NULL)
igt_dynamic_f("gt%d", gt)
check_gt_reg_sr(fd, gt);
+ igt_describe("Check GSC info debugfs devnode contents.");
+ igt_subtest_with_dynamic("gsc-info-read")
+ xe_for_each_gt(fd, gt)
+ igt_dynamic_f("gt-%u", gt)
+ test_gsc_info_read(xe_dev, gt);
+ igt_describe("Read GuC information from debugfs.");
+ igt_subtest("guc-info-read")
+ xe_for_each_gt(fd, gt)
+ test_guc_info_read(xe_dev, gt);
+
+ igt_describe("Read HuC information from debugfs.");
+ igt_subtest("huc-info-read")
+ xe_for_each_gt(fd, gt)
+ test_huc_info_read(xe_dev, gt);
+
+ igt_describe("Read guc pc information from debugfs.");
+ igt_subtest("guc-pc-read")
+ xe_for_each_gt(fd, gt)
+ test_guc_pc_info(xe_dev, gt);
+
igt_fixture() {
drm_close_driver(fd);
}
--
2.52.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* ✓ Xe.CI.BAT: success for tests/xe_debugfs: add uc debugfs validation and read tests
2026-07-17 7:52 [PATCH i-g-t v3] tests/xe_debugfs: add uc debugfs validation and read tests Sobin Thomas
@ 2026-07-17 9:04 ` Patchwork
2026-07-17 9:04 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-07-17 9:04 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 969 bytes --]
== Series Details ==
Series: tests/xe_debugfs: add uc debugfs validation and read tests
URL : https://patchwork.freedesktop.org/series/170621/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_9012_BAT -> XEIGTPW_15548_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_9012 -> IGTPW_15548
IGTPW_15548: 2f7786286e5ff878fd032ca9e8e11be46f98c272 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9012: d94a55886c7eec82a791728d3cc1c4a6aa945281 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5424-22852552aa1b7198931842ddf824af4dd09e2814: 22852552aa1b7198931842ddf824af4dd09e2814
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/index.html
[-- Attachment #2: Type: text/html, Size: 1514 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread* ✓ i915.CI.BAT: success for tests/xe_debugfs: add uc debugfs validation and read tests
2026-07-17 7:52 [PATCH i-g-t v3] tests/xe_debugfs: add uc debugfs validation and read tests Sobin Thomas
2026-07-17 9:04 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-07-17 9:04 ` Patchwork
2026-07-17 12:33 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-07-17 17:58 ` ✓ i915.CI.Full: success " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-07-17 9:04 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1099 bytes --]
== Series Details ==
Series: tests/xe_debugfs: add uc debugfs validation and read tests
URL : https://patchwork.freedesktop.org/series/170621/
State : success
== Summary ==
CI Bug Log - changes from IGT_9012 -> IGTPW_15548
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/index.html
Participating hosts (41 -> 39)
------------------------------
Missing (2): bat-dg2-13 bat-arls-5
Changes
-------
No changes found
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9012 -> IGTPW_15548
CI-20190529: 20190529
CI_DRM_18842: 22852552aa1b7198931842ddf824af4dd09e2814 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15548: 2f7786286e5ff878fd032ca9e8e11be46f98c272 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9012: d94a55886c7eec82a791728d3cc1c4a6aa945281 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/index.html
[-- Attachment #2: Type: text/html, Size: 1665 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/xe_debugfs: add uc debugfs validation and read tests
2026-07-17 7:52 [PATCH i-g-t v3] tests/xe_debugfs: add uc debugfs validation and read tests Sobin Thomas
2026-07-17 9:04 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-07-17 9:04 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-07-17 12:33 ` Patchwork
2026-07-17 17:58 ` ✓ i915.CI.Full: success " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-07-17 12:33 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 30500 bytes --]
== Series Details ==
Series: tests/xe_debugfs: add uc debugfs validation and read tests
URL : https://patchwork.freedesktop.org/series/170621/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_9012_FULL -> XEIGTPW_15548_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15548_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15548_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15548_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_reset@long-spin-many-preempt-threads:
- shard-lnl: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-lnl-4/igt@xe_exec_reset@long-spin-many-preempt-threads.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-6/igt@xe_exec_reset@long-spin-many-preempt-threads.html
New tests
---------
New tests have been introduced between XEIGT_9012_FULL and XEIGTPW_15548_FULL:
### New IGT tests (9) ###
* igt@xe_debugfs@gsc-info-read:
- Statuses : 2 pass(s)
- Exec time: [0.07, 0.10] s
* igt@xe_debugfs@gsc-info-read@gt-0:
- Statuses : 2 pass(s)
- Exec time: [0.02, 0.03] s
* igt@xe_debugfs@gsc-info-read@gt-1:
- Statuses : 2 pass(s)
- Exec time: [0.02, 0.04] s
* igt@xe_debugfs@gt-dir:
- Statuses : 2 pass(s)
- Exec time: [0.05, 0.07] s
* igt@xe_debugfs@gt-dir@gt-0:
- Statuses : 2 pass(s)
- Exec time: [0.01] s
* igt@xe_debugfs@gt-dir@gt-1:
- Statuses : 2 pass(s)
- Exec time: [0.02] s
* igt@xe_debugfs@guc-info-read:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@xe_debugfs@guc-pc-read:
- Statuses : 2 pass(s)
- Exec time: [0.02, 0.04] s
* igt@xe_debugfs@huc-info-read:
- Statuses : 2 pass(s)
- Exec time: [0.01] s
Known issues
------------
Here are the changes found in XEIGTPW_15548_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-8/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2887]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-10/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#2887])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][7] -> [INCOMPLETE][8] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2652]) +17 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_content_protection@suspend-resume:
- shard-bmg: NOTRUN -> [FAIL][10] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1340] / [Intel XE#7435])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#4422] / [Intel XE#7442])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#7178] / [Intel XE#7351])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#6312] / [Intel XE#651])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2311]) +17 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-4/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#4141]) +8 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7061] / [Intel XE#7356])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-spr-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#7905]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2313]) +16 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#656] / [Intel XE#7905])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7061]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#1503])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#6911] / [Intel XE#7378])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2486])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7283]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-9/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2393])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-1/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][31] -> [FAIL][32] ([Intel XE#8399]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#1489]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-suspend:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1406])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-6/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@psr2-suspend:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-2/igt@kms_psr@psr2-suspend.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#3904] / [Intel XE#7342])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_sharpness_filter@filter-suspend:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#6503]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-10/igt@kms_sharpness_filter@filter-suspend.html
* igt@kms_vrr@lobf-dc3co:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#8397])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@kms_vrr@lobf-dc3co.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-7/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_evict@evict-cm-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#8370])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@xe_evict@evict-cm-threads-small-multi-queue.html
* igt@xe_evict@evict-large:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-8/igt@xe_evict@evict-large.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-5/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-fault:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#8374]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-fault.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#8374])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-priority:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#8364]) +8 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-priority.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-close-fd:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#8364])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-1/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-close-fd.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][47] ([Intel XE#7098] / [Intel XE#8159])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-5/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#8378])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
* igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#8378]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early:
- shard-bmg: NOTRUN -> [ABORT][50] ([Intel XE#8007])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-bmg: [PASS][51] -> [ABORT][52] ([Intel XE#8007]) +2 other tests abort
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2833])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@xe_mmap@small-bar.html
* igt@xe_multigpu_svm@mgpu-migration-basic:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#6964])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@xe_multigpu_svm@mgpu-migration-basic.html
* igt@xe_page_reclaim@many-vma-same-bo:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7793])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@xe_page_reclaim@many-vma-same-bo.html
* igt@xe_pm@s3-basic:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#584] / [Intel XE#7369])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-5/igt@xe_pm@s3-basic.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#944])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-2/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [PASS][59] -> [FAIL][60] ([Intel XE#6569])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-10/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [PASS][61] -> [FAIL][62] ([Intel XE#7992])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-2/igt@xe_sriov_flr@flr-vfs-parallel.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Possible fixes ####
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][63] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode:
- shard-bmg: [ABORT][65] ([Intel XE#8007]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
* igt@xe_module_load@load:
- shard-bmg: ([SKIP][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-3/igt@xe_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-8/igt@xe_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-1/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-1/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-9/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-9/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-6/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-6/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-5/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-5/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-3/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-3/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-2/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-7/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-2/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-4/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-3/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-10/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-10/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-9/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-8/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-8/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-1/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-7/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-4/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-4/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-8/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-10/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-1/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-8/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-5/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-5/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-7/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-7/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-8/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-4/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-4/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-2/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-2/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-9/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-9/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-1/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-10/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-10/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-1/igt@xe_module_load@load.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
[Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8397
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_9012 -> IGTPW_15548
IGTPW_15548: 2f7786286e5ff878fd032ca9e8e11be46f98c272 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9012: d94a55886c7eec82a791728d3cc1c4a6aa945281 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5424-22852552aa1b7198931842ddf824af4dd09e2814: 22852552aa1b7198931842ddf824af4dd09e2814
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/index.html
[-- Attachment #2: Type: text/html, Size: 33452 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread* ✓ i915.CI.Full: success for tests/xe_debugfs: add uc debugfs validation and read tests
2026-07-17 7:52 [PATCH i-g-t v3] tests/xe_debugfs: add uc debugfs validation and read tests Sobin Thomas
` (2 preceding siblings ...)
2026-07-17 12:33 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-07-17 17:58 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-07-17 17:58 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 152388 bytes --]
== Series Details ==
Series: tests/xe_debugfs: add uc debugfs validation and read tests
URL : https://patchwork.freedesktop.org/series/170621/
State : success
== Summary ==
CI Bug Log - changes from IGT_9012_full -> IGTPW_15548_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_15548_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][1] ([i915#8411]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-15/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][2] ([i915#8411])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-4/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-8/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-tglu-1: NOTRUN -> [SKIP][4] ([i915#11078])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@device_reset@cold-reset-bound.html
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#11078])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-5/igt@device_reset@cold-reset-bound.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#14544] / [i915#3555] / [i915#9323])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#7697])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#6335])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-10/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#8562])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-10/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [PASS][11] -> [INCOMPLETE][12] ([i915#13356]) +2 other tests incomplete
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-5/igt@gem_ctx_isolation@preservation-s3.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html
- shard-glk10: NOTRUN -> [INCOMPLETE][13] ([i915#13356] / [i915#16466]) +1 other test incomplete
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk10/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-tglu-1: NOTRUN -> [SKIP][14] +62 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@engines-hang:
- shard-snb: NOTRUN -> [SKIP][15] ([i915#1099]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-snb5/igt@gem_ctx_persistence@engines-hang.html
* igt@gem_ctx_sseu@engines:
- shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#280])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#280]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-6/igt@gem_ctx_sseu@invalid-args.html
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#280]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-8/igt@gem_ctx_sseu@invalid-args.html
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#280]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-14/igt@gem_ctx_sseu@invalid-args.html
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#280])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-9/igt@gem_ctx_sseu@invalid-args.html
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#280]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-4/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_balancer@parallel:
- shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#4525])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#4525])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#4525]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-8/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#14544] / [i915#4525])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_big@single:
- shard-rkl: [PASS][26] -> [FAIL][27] ([i915#16604])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-8/igt@gem_exec_big@single.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-5/igt@gem_exec_big@single.html
- shard-mtlp: [PASS][28] -> [FAIL][29] ([i915#15871])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-mtlp-1/igt@gem_exec_big@single.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-3/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][30] ([i915#6334]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk8/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu: NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-8/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-17/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-6/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_reloc@basic-write-cpu:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#3281]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@gem_exec_reloc@basic-write-cpu.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#14544] / [i915#3281])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#7276])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu: NOTRUN -> [SKIP][38] ([i915#2190])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-6/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#4613]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu: NOTRUN -> [SKIP][40] ([i915#4613]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-4/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random:
- shard-glk: NOTRUN -> [SKIP][41] ([i915#4613]) +6 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk3/igt@gem_lmem_swapping@random.html
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#4613]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-2/igt@gem_lmem_swapping@random.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4077]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-3/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4083]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-4/igt@gem_mmap_wc@write-read-distinct.html
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4083]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-14/igt@gem_mmap_wc@write-read-distinct.html
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4083]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-5/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3282]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-8/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#3282]) +6 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@display:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#14544] / [i915#3282])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@gem_pread@display.html
* igt@gem_pread@exhaustion:
- shard-tglu: NOTRUN -> [WARN][50] ([i915#2658])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-10/igt@gem_pread@exhaustion.html
- shard-glk10: NOTRUN -> [WARN][51] ([i915#2658])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk10/igt@gem_pread@exhaustion.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#13717])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#13398])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#13398])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-7/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4270])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4270])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-16/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_readwrite@read-write:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#3282]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-6/igt@gem_readwrite@read-write.html
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-18/igt@gem_readwrite@read-write.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][59] +668 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#5190] / [i915#8428]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-8/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#8428]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-1/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4079])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-8/igt@gem_render_tiled_blits@basic.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4079])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-17/igt@gem_render_tiled_blits@basic.html
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4079])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-3/igt@gem_render_tiled_blits@basic.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [PASS][65] -> [INCOMPLETE][66] ([i915#13809] / [i915#16226])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-7/igt@gem_softpin@noreloc-s3.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@gem_softpin@noreloc-s3.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4879])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-3/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@access-control:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#3297])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-1/igt@gem_userptr_blits@access-control.html
- shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#3297])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][70] ([i915#3323])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk9/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#3281] / [i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-5/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#3297]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-4/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#3297]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_workarounds@suspend-resume:
- shard-glk11: NOTRUN -> [INCOMPLETE][74] ([i915#13356] / [i915#14586])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk11/igt@gem_workarounds@suspend-resume.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#2856]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-5/igt@gen9_exec_parse@cmd-crossing-page.html
- shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#2527] / [i915#2856])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#2856]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-3/igt@gen9_exec_parse@secure-batches.html
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#2527]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-7/igt@gen9_exec_parse@secure-batches.html
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#2527]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-13/igt@gen9_exec_parse@secure-batches.html
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-2/igt@gen9_exec_parse@secure-batches.html
* igt@i915_drm_fdinfo@busy-idle-check-all@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#11527]) +6 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-3/igt@i915_drm_fdinfo@busy-idle-check-all@rcs0.html
* igt@i915_drm_fdinfo@busy-idle-check-all@vcs0:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#11527]) +7 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-8/igt@i915_drm_fdinfo@busy-idle-check-all@vcs0.html
* igt@i915_drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#11527]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-17/igt@i915_drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-tglu: NOTRUN -> [ABORT][84] ([i915#15342]) +1 other test abort
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-8/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-glk11: NOTRUN -> [ABORT][85] ([i915#15342]) +1 other test abort
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk11/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@fault-injection@uc_fw_rsa_data_create:
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#15479]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-8/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html
* igt@i915_module_load@reload-no-display:
- shard-dg1: [PASS][87] -> [DMESG-WARN][88] ([i915#13029] / [i915#14545])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg1-16/igt@i915_module_load@reload-no-display.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-17/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#8399])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][90] -> [INCOMPLETE][91] ([i915#13356] / [i915#13820]) +1 other test incomplete
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#14498])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rps@waitboost:
- shard-mtlp: [PASS][93] -> [FAIL][94] ([i915#15365] / [i915#16503])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-mtlp-8/igt@i915_pm_rps@waitboost.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-2/igt@i915_pm_rps@waitboost.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#6188])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-7/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#6188])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-7/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@query-topology-unsupported:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#16079])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-7/igt@i915_query@query-topology-unsupported.html
* igt@i915_selftest@live@gt_pm:
- shard-rkl: [PASS][98] -> [DMESG-FAIL][99] ([i915#12964]) +1 other test dmesg-fail
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-8/igt@i915_selftest@live@gt_pm.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][100] ([i915#16182] / [i915#4817]) +1 other test incomplete
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk5/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@forcewake:
- shard-rkl: [PASS][101] -> [INCOMPLETE][102] ([i915#4817]) +1 other test incomplete
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-8/igt@i915_suspend@forcewake.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@i915_suspend@forcewake.html
- shard-tglu: [PASS][103] -> [ABORT][104] ([i915#15840])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-tglu-6/igt@i915_suspend@forcewake.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-4/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#7707])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#4212])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-3/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#4212])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-1/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#4212])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-19/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small:
- shard-dg1: [PASS][109] -> [DMESG-WARN][110] ([i915#4391] / [i915#4423])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg1-13/igt@kms_addfb_basic@bo-too-small.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-17/igt@kms_addfb_basic@bo-too-small.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#12454] / [i915#12712])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#12454] / [i915#12712])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#12454] / [i915#12712])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-glk10: NOTRUN -> [SKIP][115] ([i915#1769])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][116] ([i915#15662]) +1 other test fail
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][117] ([i915#5956]) +1 other test fail
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#5286]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-8/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][119] ([i915#5286]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#5286]) +4 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][121] -> [FAIL][122] ([i915#15733] / [i915#5138]) +3 other tests fail
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#3638]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-8/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#3638])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-13/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#5190]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#6187]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5190]) +4 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-14/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-glk10: NOTRUN -> [SKIP][129] +163 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk10/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4423] / [i915#4538])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-18/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_busy@extended-modeset-hang-oldfb:
- shard-dg1: [PASS][131] -> [DMESG-WARN][132] ([i915#4423]) +4 other tests dmesg-warn
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg1-17/igt@kms_busy@extended-modeset-hang-oldfb.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-13/igt@kms_busy@extended-modeset-hang-oldfb.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#6095]) +69 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-8/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#12313]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-10/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#6095]) +221 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6095]) +24 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#12313])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#12313])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#12805])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#6095]) +49 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [PASS][142] -> [INCOMPLETE][143] ([i915#15582])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#6095]) +7 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#14098] / [i915#6095]) +43 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
- shard-glk10: NOTRUN -> [INCOMPLETE][146] ([i915#15582]) +1 other test incomplete
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk10/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#12313] / [i915#14544])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#14544] / [i915#6095]) +7 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#6095]) +69 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#10307] / [i915#6095]) +76 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#3742])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-2/igt@kms_cdclk@mode-transition.html
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#3742])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_cdclk@mode-transition.html
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#3742]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-19/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#13781]) +4 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-7/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#13781]) +4 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#13783]) +4 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_audio@hdmi-audio-after-suspend:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#11151])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-1/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#11151])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-2/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#11151])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-19/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#11151])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-7/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#11151])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-3/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html
* igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#16464] / [i915#16471])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-5/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#16471])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-5/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#16471])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#16471])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-16/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4:
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#16471])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html
* igt@kms_chamelium_color_pipeline@plane-lut3d-green-only:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#16471]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-7/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +4 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-5/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#14544] / [i915#7828])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +2 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-6/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +6 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-8/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-14/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +4 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-9/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#15865])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#15330] / [i915#3299])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#15330] / [i915#3299])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-15/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#15330] / [i915#3116] / [i915#3299])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#15330] / [i915#3299])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-8/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#15330]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-3/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#15330]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#14544] / [i915#15330])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#15330]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-19/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#15330]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-2/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#15865])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-7/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#15865]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-8/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#15865])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-14/igt@kms_content_protection@type1.html
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#15865])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-5/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#15865])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-4/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][191] ([i915#13566]) +1 other test fail
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#14544] / [i915#3555])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8814]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#13049]) +2 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][195] -> [FAIL][196] ([i915#13566]) +1 other test fail
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-tglu-8/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-rkl: [PASS][197] -> [FAIL][198] ([i915#13566]) +2 other tests fail
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][199] ([i915#13566]) +1 other test fail
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#3555]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#3555]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#3555]) +3 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#3555]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8814])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][205] ([i915#12358] / [i915#14152] / [i915#7882])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk6/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][206] ([i915#12358] / [i915#14152])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#4103])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#13046] / [i915#5354]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#9809]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][210] ([i915#15804])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#16361]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#16361]) +2 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#16361]) +3 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][214] ([i915#9878])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk4/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-rkl: [PASS][215] -> [INCOMPLETE][216] ([i915#9878])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-8/igt@kms_fbcon_fbt@fbc-suspend.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#3469])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-7/igt@kms_fbcon_fbt@psr.html
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3955])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-3/igt@kms_fbcon_fbt@psr.html
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#3469])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-12/igt@kms_fbcon_fbt@psr.html
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#3469])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-6/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#16081])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-4/igt@kms_feature_discovery@display-3x.html
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#16081])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-3/igt@kms_feature_discovery@display-3x.html
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#16081])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-17/igt@kms_feature_discovery@display-3x.html
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#16081])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-10/igt@kms_feature_discovery@display-3x.html
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#16081])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-7/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#16081])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dsc:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#16600])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@kms_feature_discovery@dsc.html
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#16600])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-16/igt@kms_feature_discovery@dsc.html
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#16600])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-4/igt@kms_feature_discovery@dsc.html
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#16600])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-8/igt@kms_feature_discovery@dsc.html
* igt@kms_feature_discovery@psr1:
- shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#658])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#658])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-14/igt@kms_feature_discovery@psr1.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#4881])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-5/igt@kms_fence_pin_leak.html
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#4881])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-13/igt@kms_fence_pin_leak.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#4881])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-6/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#3637] / [i915#9934]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#9934]) +3 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-2/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#9934])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-19/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3637] / [i915#9934])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-3/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][240] ([i915#12745] / [i915#4839])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk11/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk11: NOTRUN -> [INCOMPLETE][241] ([i915#12745])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk11/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#9934]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-7/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#3637] / [i915#9934]) +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-7/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][244] ([i915#12745] / [i915#4839] / [i915#6113])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk1/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][245] ([i915#12745] / [i915#4839])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][246] ([i915#12745])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][247] ([i915#12745] / [i915#6113])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#15643]) +2 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#15643] / [i915#5190]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#15643])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#15643]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#15643]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#15643]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#15643])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#15104] / [i915#15990]) +2 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#15990] / [i915#8708]) +8 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#15990] / [i915#8708]) +7 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [PASS][258] -> [INCOMPLETE][259] ([i915#10056])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#5439])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
- shard-rkl: [PASS][261] -> [SKIP][262] ([i915#15989]) +8 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#15989]) +11 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-18/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#15989]) +18 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-pgflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#15991]) +18 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt:
- shard-tglu: NOTRUN -> [SKIP][266] +99 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-10/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#15991]) +20 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-linear:
- shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#15989]) +14 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#15991] / [i915#5354]) +9 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#15990]) +10 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move:
- shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#15102]) +29 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-shrfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#14544]) +9 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#5439])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#15989]) +23 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt:
- shard-glk: [PASS][275] -> [SKIP][276] +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk6/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-2p-rte:
- shard-dg1: NOTRUN -> [SKIP][277] +33 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-15/igt@kms_frontbuffer_tracking@hdr-2p-rte.html
* igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#15990]) +11 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-5/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#15989]) +9 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-4/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#9766])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#15102]) +11 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#15104] / [i915#15990]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#15104] / [i915#15990])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#14544] / [i915#15102] / [i915#3023])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#15102] / [i915#3023]) +13 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
- shard-glk11: NOTRUN -> [SKIP][286] +62 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#1825]) +4 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#15991] / [i915#1825]) +8 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#15990] / [i915#8708]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#15989]) +15 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-7/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#15102]) +48 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][292] +60 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-8/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#15990]) +5 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-8/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#14544] / [i915#15102]) +4 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-render:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#15102]) +16 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-19/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-suspend:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#15102]) +17 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-7/igt@kms_frontbuffer_tracking@psrhdr-suspend.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: [PASS][297] -> [SKIP][298] ([i915#3555] / [i915#8228])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_hdr@static-toggle-dpms.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb16161616f:
- shard-rkl: NOTRUN -> [ABORT][299] ([i915#15132])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-1/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb16161616f.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#15460])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-9/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#15459])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-9/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#13688])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-4/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_mst@mst-suspend-read-crc:
- shard-tglu: NOTRUN -> [SKIP][303] ([i915#16451])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-8/igt@kms_mst@mst-suspend-read-crc.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#14544] / [i915#6301])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][305] +4 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-3/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#14712])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
- shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#14712])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier:
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#15709])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#15709]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-8/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#15709]) +4 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-4/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#15709]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#15709]) +3 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-19/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5:
- shard-mtlp: NOTRUN -> [SKIP][313] ([i915#16386]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#15709]) +4 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#16386]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][316] ([i915#10647] / [i915#12169])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk3/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][317] ([i915#10647]) +1 other test fail
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk3/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#3555] / [i915#8821])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-7/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#13958])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-tglu: NOTRUN -> [SKIP][320] ([i915#13958])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-7/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][321] ([i915#15329]) +4 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#15329]) +4 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][323] ([i915#15329]) +4 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#12343] / [i915#5354])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-3/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#12343] / [i915#9812])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#12343] / [i915#5354])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-7/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#15751])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-4/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][328] ([i915#3361])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-18/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: NOTRUN -> [FAIL][329] ([i915#16479])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#3828])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#8430])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-8/igt@kms_pm_lpsp@screens-disabled.html
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#8430])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#8430])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][334] ([i915#8430])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-10/igt@kms_pm_lpsp@screens-disabled.html
- shard-mtlp: NOTRUN -> [SKIP][335] ([i915#8430])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-3/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#14544] / [i915#15073])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
- shard-dg1: [PASS][337] -> [SKIP][338] ([i915#15073])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-18/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][339] -> [SKIP][340] ([i915#15073])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][341] -> [SKIP][342] ([i915#15073])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][343] ([i915#15073])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@pc8-residency:
- shard-dg2: NOTRUN -> [SKIP][344] +2 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-4/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_pm_rpm@pm-caching:
- shard-dg1: NOTRUN -> [SKIP][345] ([i915#4077]) +5 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-19/igt@kms_pm_rpm@pm-caching.html
- shard-mtlp: NOTRUN -> [SKIP][346] ([i915#4077]) +5 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-8/igt@kms_pm_rpm@pm-caching.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [PASS][347] -> [INCOMPLETE][348] ([i915#14419])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg2-6/igt@kms_pm_rpm@system-suspend-idle.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-3/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: [PASS][349] -> [INCOMPLETE][350] ([i915#10553])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-glk6/igt@kms_pm_rpm@system-suspend-modeset.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk8/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-glk11: NOTRUN -> [SKIP][351] ([i915#11520])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk11/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][352] ([i915#9808])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][353] ([i915#12316]) +2 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][354] ([i915#11520]) +3 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#11520]) +2 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
- shard-snb: NOTRUN -> [SKIP][356] ([i915#11520]) +1 other test skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-snb6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
- shard-dg1: NOTRUN -> [SKIP][357] ([i915#11520]) +1 other test skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-15/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][358] ([i915#11520]) +4 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk10/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#11520]) +5 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][360] ([i915#11520]) +15 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-tglu: NOTRUN -> [SKIP][361] ([i915#11520]) +5 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][362] ([i915#9683]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][363] ([i915#9683])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-1/igt@kms_psr2_su@page_flip-nv12.html
- shard-dg1: NOTRUN -> [SKIP][364] ([i915#9683])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-19/igt@kms_psr2_su@page_flip-nv12.html
- shard-tglu: NOTRUN -> [SKIP][365] ([i915#9683])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-7/igt@kms_psr2_su@page_flip-nv12.html
- shard-mtlp: NOTRUN -> [SKIP][366] ([i915#4348])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-3/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-cursor-blt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#9688]) +8 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-5/igt@kms_psr@fbc-psr-cursor-blt@edp-1.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][368] ([i915#9732]) +20 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-9/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][369] ([i915#9732]) +11 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][370] ([i915#1072] / [i915#9732]) +10 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-13/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][371] ([i915#1072] / [i915#9732]) +11 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-1/igt@kms_psr@psr2-cursor-blt.html
- shard-rkl: NOTRUN -> [SKIP][372] ([i915#1072] / [i915#9732]) +9 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-2/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][373] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][374] ([i915#15949])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk10: NOTRUN -> [INCOMPLETE][375] ([i915#15492] / [i915#16184])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][376] ([i915#12755] / [i915#15867]) +1 other test skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-3/igt@kms_rotation_crc@primary-rotation-90.html
- shard-dg2: NOTRUN -> [SKIP][377] ([i915#12755] / [i915#15867])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][378] ([i915#12755] / [i915#15867] / [i915#5190])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][379] ([i915#5289]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][380] ([i915#5289])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][381] ([i915#3555]) +3 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][382] ([i915#10959])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk3/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][383] -> [INCOMPLETE][384] ([i915#12276]) +1 other test incomplete
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-4/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html
- shard-glk: NOTRUN -> [INCOMPLETE][385] ([i915#12276])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk5/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@flip-dpms:
- shard-dg2: NOTRUN -> [SKIP][386] ([i915#15243] / [i915#3555])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-1/igt@kms_vrr@flip-dpms.html
- shard-rkl: NOTRUN -> [SKIP][387] ([i915#15243] / [i915#3555])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-5/igt@kms_vrr@flip-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][388] ([i915#3555] / [i915#8808])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-4/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@negative-basic:
- shard-tglu: NOTRUN -> [SKIP][389] ([i915#3555] / [i915#9906])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-2/igt@kms_vrr@negative-basic.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][390] ([i915#14544] / [i915#2436])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][391] ([i915#2434])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-1/igt@perf@mi-rpc.html
- shard-rkl: NOTRUN -> [SKIP][392] ([i915#2434])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-2/igt@perf@mi-rpc.html
- shard-dg1: NOTRUN -> [SKIP][393] ([i915#2434])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-19/igt@perf@mi-rpc.html
- shard-mtlp: NOTRUN -> [SKIP][394] ([i915#2434])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-3/igt@perf@mi-rpc.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][395] ([i915#2433])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: [PASS][396] -> [FAIL][397] ([i915#4349])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-mtlp-1/igt@perf_pmu@busy-double-start@ccs0.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [ABORT][398] ([i915#13029] / [i915#15778])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-1/igt@perf_pmu@module-unload.html
- shard-rkl: NOTRUN -> [ABORT][399] ([i915#15778])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-5/igt@perf_pmu@module-unload.html
- shard-dg1: NOTRUN -> [ABORT][400] ([i915#13029] / [i915#15778])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-17/igt@perf_pmu@module-unload.html
- shard-snb: NOTRUN -> [ABORT][401] ([i915#15778])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-snb7/igt@perf_pmu@module-unload.html
- shard-tglu: NOTRUN -> [ABORT][402] ([i915#15778])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-3/igt@perf_pmu@module-unload.html
- shard-mtlp: NOTRUN -> [ABORT][403] ([i915#15778])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-4/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu-1: NOTRUN -> [SKIP][404] ([i915#8516])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html
* igt@prime_udl@share-import:
- shard-tglu: NOTRUN -> [SKIP][405] ([i915#16420])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-5/igt@prime_udl@share-import.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][406] ([i915#3291] / [i915#3708])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-7/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][407] ([i915#3708])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-4/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random:
- shard-tglu-1: NOTRUN -> [SKIP][408] ([i915#16066]) +9 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [SKIP][409] ([i915#16066]) +9 other tests skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@sysfs_heartbeat_interval@precise:
- shard-snb: NOTRUN -> [SKIP][410] +159 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-snb4/igt@sysfs_heartbeat_interval@precise.html
#### Possible fixes ####
* igt@gem_eio@hibernate:
- shard-mtlp: [FAIL][411] ([i915#16594]) -> [PASS][412]
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-mtlp-3/igt@gem_eio@hibernate.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-7/igt@gem_eio@hibernate.html
* igt@gem_exec_params@larger-than-life-batch:
- shard-mtlp: [SKIP][413] ([i915#16090] / [i915#3710]) -> [PASS][414]
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-mtlp-3/igt@gem_exec_params@larger-than-life-batch.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-3/igt@gem_exec_params@larger-than-life-batch.html
* igt@gem_mmap_offset@clear@smem0:
- shard-mtlp: [TIMEOUT][415] ([i915#16168]) -> [PASS][416] +1 other test pass
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-mtlp-3/igt@gem_mmap_offset@clear@smem0.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-5/igt@gem_mmap_offset@clear@smem0.html
* igt@i915_module_load@reload-no-display:
- shard-tglu: [DMESG-WARN][417] ([i915#13029] / [i915#14545]) -> [PASS][418]
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-tglu-7/igt@i915_module_load@reload-no-display.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-10/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_rpm@gem-execbuf-stress:
- shard-rkl: [ABORT][419] -> [PASS][420] +1 other test pass
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-1/igt@i915_pm_rpm@gem-execbuf-stress.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-3/igt@i915_pm_rpm@gem-execbuf-stress.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: [INCOMPLETE][421] ([i915#13356] / [i915#15172]) -> [PASS][422]
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-glk4/igt@i915_pm_rpm@system-suspend-execbuf.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk1/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: [INCOMPLETE][423] ([i915#16182] / [i915#4817]) -> [PASS][424]
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-glk8/igt@i915_suspend@sysfs-reader.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk2/igt@i915_suspend@sysfs-reader.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-dg1: [FAIL][425] ([i915#14888]) -> [PASS][426]
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg1-18/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-15/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-mtlp: [FAIL][427] ([i915#15871]) -> [PASS][428] +1 other test pass
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-mtlp-3/igt@kms_big_fb@linear-8bpp-rotate-180.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-7/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-rkl: [FAIL][429] ([i915#13566]) -> [PASS][430] +1 other test pass
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-3/igt@kms_cursor_crc@cursor-random-64x21.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu: [FAIL][431] ([i915#13566]) -> [PASS][432] +5 other tests pass
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-256x85.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-tglu: [FAIL][433] ([i915#13027]) -> [PASS][434] +1 other test pass
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-tglu-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
- shard-rkl: [SKIP][435] ([i915#15989]) -> [PASS][436] +13 other tests pass
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-glk: [SKIP][437] -> [PASS][438] +1 other test pass
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-glk2/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_hdr@static-toggle:
- shard-rkl: [SKIP][439] ([i915#3555] / [i915#8228]) -> [PASS][440]
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-5/igt@kms_hdr@static-toggle.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010:
- shard-rkl: [INCOMPLETE][441] ([i915#15436]) -> [PASS][442]
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-1/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg1: [ABORT][443] ([i915#4423]) -> [PASS][444]
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg1-15/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-13/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [SKIP][445] ([i915#15073]) -> [PASS][446]
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: [SKIP][447] ([i915#15073]) -> [PASS][448] +2 other tests pass
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][449] ([i915#15073]) -> [PASS][450] +2 other tests pass
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][451] ([i915#12276]) -> [PASS][452]
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-glk6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-glk5/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-mtlp: [FAIL][453] ([i915#15453]) -> [PASS][454]
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-mtlp-4/igt@perf_pmu@all-busy-idle-check-all.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-8/igt@perf_pmu@all-busy-idle-check-all.html
#### Warnings ####
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: [SKIP][455] ([i915#14544] / [i915#3281]) -> [SKIP][456] ([i915#3281]) +2 other tests skip
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: [SKIP][457] ([i915#7697]) -> [SKIP][458] ([i915#14544] / [i915#7697])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: [SKIP][459] ([i915#14544] / [i915#8562]) -> [SKIP][460] ([i915#8562])
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-5/igt@gem_create@create-ext-set-pat.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: [SKIP][461] ([i915#4525]) -> [SKIP][462] ([i915#14544] / [i915#4525])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-5/igt@gem_exec_balancer@parallel-balancer.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: [SKIP][463] ([i915#14544] / [i915#4525]) -> [SKIP][464] ([i915#4525])
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-7/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: [SKIP][465] ([i915#3281]) -> [SKIP][466] ([i915#14544] / [i915#3281]) +6 other tests skip
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: [SKIP][467] ([i915#4613] / [i915#7582]) -> [SKIP][468] ([i915#14544] / [i915#4613] / [i915#7582])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: [SKIP][469] ([i915#14544] / [i915#4613]) -> [SKIP][470] ([i915#4613]) +2 other tests skip
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: [SKIP][471] ([i915#4613]) -> [SKIP][472] ([i915#14544] / [i915#4613]) +1 other test skip
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-2/igt@gem_lmem_swapping@random-engines.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: [SKIP][473] ([i915#3282]) -> [SKIP][474] ([i915#14544] / [i915#3282]) +2 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-5/igt@gem_partial_pwrite_pread@reads.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-rkl: [SKIP][475] ([i915#14544] / [i915#3282]) -> [SKIP][476] ([i915#3282]) +3 other tests skip
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@reads.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-2/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_tiled_pread_basic@basic:
- shard-rkl: [SKIP][477] ([i915#15656]) -> [SKIP][478] ([i915#14544] / [i915#15656])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-5/igt@gem_tiled_pread_basic@basic.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: [SKIP][479] ([i915#3297]) -> [SKIP][480] ([i915#14544] / [i915#3297])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-5/igt@gem_userptr_blits@dmabuf-unsync.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: [SKIP][481] ([i915#2527]) -> [SKIP][482] ([i915#14544] / [i915#2527])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-3/igt@gen9_exec_parse@bb-chained.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: [SKIP][483] ([i915#14544] / [i915#2527]) -> [SKIP][484] ([i915#2527]) +2 other tests skip
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-8/igt@gen9_exec_parse@valid-registers.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: [SKIP][485] ([i915#14544] / [i915#8399]) -> [SKIP][486] ([i915#8399])
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-2/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: [SKIP][487] ([i915#6590]) -> [SKIP][488] ([i915#14544] / [i915#6590]) +1 other test skip
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: [SKIP][489] ([i915#14498] / [i915#14544]) -> [SKIP][490] ([i915#14498])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-rkl: [SKIP][491] ([i915#5286]) -> [SKIP][492] ([i915#14544] / [i915#5286]) +3 other tests skip
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: [SKIP][493] ([i915#4538] / [i915#5286]) -> [SKIP][494] ([i915#4423] / [i915#4538] / [i915#5286])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][495] ([i915#14544] / [i915#5286]) -> [SKIP][496] ([i915#5286]) +2 other tests skip
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][497] ([i915#3828]) -> [SKIP][498] ([i915#14544] / [i915#3828]) +1 other test skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-rkl: [SKIP][499] ([i915#14544] / [i915#3638]) -> [SKIP][500] ([i915#3638])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-8/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: [SKIP][501] ([i915#3638]) -> [SKIP][502] ([i915#14544] / [i915#3638])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][503] ([i915#6095]) -> [SKIP][504] ([i915#14544] / [i915#6095]) +2 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][505] ([i915#14098] / [i915#6095]) -> [SKIP][506] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][507] ([i915#14544] / [i915#6095]) -> [SKIP][508] ([i915#6095]) +9 other tests skip
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-rkl: [SKIP][509] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][510] ([i915#14098] / [i915#6095]) +12 other tests skip
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: [SKIP][511] ([i915#3742]) -> [SKIP][512] ([i915#14544] / [i915#3742])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-3/igt@kms_cdclk@plane-scaling.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@gamma:
- shard-dg1: [SKIP][513] -> [SKIP][514] ([i915#4423]) +2 other tests skip
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg1-17/igt@kms_chamelium_color@gamma.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-19/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_color_pipeline@plane-lut3d-green-only:
- shard-rkl: [SKIP][515] ([i915#14544] / [i915#16471]) -> [SKIP][516] ([i915#16471]) +1 other test skip
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-7/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-rkl: [SKIP][517] ([i915#11151] / [i915#7828]) -> [SKIP][518] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-rkl: [SKIP][519] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][520] ([i915#11151] / [i915#7828]) +2 other tests skip
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-7/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_content_protection@atomic:
- shard-rkl: [SKIP][521] ([i915#14544] / [i915#15865]) -> [SKIP][522] ([i915#15865])
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_content_protection@atomic.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-2/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: [SKIP][523] ([i915#15865]) -> [SKIP][524] ([i915#14544] / [i915#15865]) +1 other test skip
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-5/igt@kms_content_protection@atomic-dpms.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][525] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][526] ([i915#15330] / [i915#3116])
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: [SKIP][527] ([i915#13049]) -> [SKIP][528] ([i915#13049] / [i915#14544])
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: [SKIP][529] ([i915#13748]) -> [SKIP][530] ([i915#13748] / [i915#14544])
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-2/igt@kms_dp_link_training@uhbr-mst.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner:
- shard-rkl: [SKIP][531] ([i915#16361]) -> [SKIP][532] ([i915#14544] / [i915#16361]) +1 other test skip
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-4/igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner.html
* igt@kms_dsc@dsc-with-bpc-ultrajoiner:
- shard-rkl: [SKIP][533] ([i915#14544] / [i915#16361]) -> [SKIP][534] ([i915#16361])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-7/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][535] ([i915#14544] / [i915#3955]) -> [SKIP][536] ([i915#3955])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-rkl: [SKIP][537] ([i915#14544] / [i915#9934]) -> [SKIP][538] ([i915#9934]) +1 other test skip
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-rkl: [SKIP][539] ([i915#9934]) -> [SKIP][540] ([i915#14544] / [i915#9934]) +3 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-3/igt@kms_flip@2x-wf_vblank-ts-check.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: [SKIP][541] ([i915#14544] / [i915#15643]) -> [SKIP][542] ([i915#15643]) +2 other tests skip
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-rkl: [SKIP][543] ([i915#15643]) -> [SKIP][544] ([i915#14544] / [i915#15643]) +2 other tests skip
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][545] ([i915#1825]) -> [SKIP][546] ([i915#14544] / [i915#1825]) +1 other test skip
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-rkl: [SKIP][547] ([i915#15102] / [i915#3023]) -> [SKIP][548] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte:
- shard-rkl: [SKIP][549] ([i915#14544] / [i915#15102]) -> [SKIP][550] ([i915#15102]) +11 other tests skip
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff:
- shard-rkl: [SKIP][551] -> [SKIP][552] ([i915#14544]) +42 other tests skip
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-mmap-gtt:
- shard-rkl: [SKIP][553] ([i915#15102]) -> [SKIP][554] ([i915#14544] / [i915#15102]) +8 other tests skip
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-mmap-gtt.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4:
- shard-rkl: [SKIP][555] ([i915#14544] / [i915#5439]) -> [SKIP][556] ([i915#5439])
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
* igt@kms_frontbuffer_tracking@hdr-suspend:
- shard-rkl: [INCOMPLETE][557] ([i915#16056]) -> [SKIP][558] ([i915#15989])
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-suspend.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-8/igt@kms_frontbuffer_tracking@hdr-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][559] ([i915#15102]) -> [SKIP][560] ([i915#10433] / [i915#15102]) +5 other tests skip
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2: [SKIP][561] ([i915#10433] / [i915#15102]) -> [SKIP][562] ([i915#15102]) +1 other test skip
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: [SKIP][563] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][564] ([i915#15102] / [i915#3023]) +10 other tests skip
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move:
- shard-rkl: [SKIP][565] ([i915#14544]) -> [SKIP][566] +46 other tests skip
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-8/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][567] ([i915#12713] / [i915#16490]) -> [SKIP][568] ([i915#1187] / [i915#12713] / [i915#16490])
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-mtlp-8/igt@kms_hdr@brightness-with-hdr.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: [SKIP][569] ([i915#14544]) -> [SKIP][570] ([i915#12713])
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-8/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: [SKIP][571] ([i915#1187] / [i915#12713]) -> [SKIP][572] ([i915#12713])
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: [INCOMPLETE][573] ([i915#15436]) -> [ABORT][574] ([i915#15132])
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: [SKIP][575] ([i915#14544] / [i915#15460]) -> [SKIP][576] ([i915#15460])
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-2/igt@kms_joiner@basic-big-joiner.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-rkl: [SKIP][577] ([i915#14544] / [i915#15709]) -> [SKIP][578] ([i915#15709])
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-5/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: [SKIP][579] ([i915#15709]) -> [SKIP][580] ([i915#14544] / [i915#15709])
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-5/igt@kms_plane@pixel-format-yf-tiled-modifier.html
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-rkl: [SKIP][581] ([i915#13958]) -> [SKIP][582] ([i915#13958] / [i915#14544])
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-x.html
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-rkl: [SKIP][583] ([i915#13958] / [i915#14544]) -> [SKIP][584] ([i915#13958])
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_pm_dc@dc5-pageflip-negative:
- shard-rkl: [SKIP][585] ([i915#9685]) -> [SKIP][586] ([i915#14544] / [i915#9685])
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-2/igt@kms_pm_dc@dc5-pageflip-negative.html
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_pm_dc@dc5-pageflip-negative.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][587] ([i915#15128]) -> [SKIP][588] ([i915#15739])
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: [SKIP][589] ([i915#9340]) -> [SKIP][590] ([i915#3828])
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: [SKIP][591] ([i915#6524]) -> [SKIP][592] ([i915#14544] / [i915#6524]) +1 other test skip
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-rkl: [SKIP][593] ([i915#11520] / [i915#14544]) -> [SKIP][594] ([i915#11520]) +3 other tests skip
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-rkl: [SKIP][595] ([i915#11520]) -> [SKIP][596] ([i915#11520] / [i915#14544]) +3 other tests skip
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-dg1: [SKIP][597] ([i915#11520]) -> [SKIP][598] ([i915#11520] / [i915#4423])
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg1-17/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-13/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: [SKIP][599] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][600] ([i915#1072] / [i915#9732]) +7 other tests skip
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: [SKIP][601] ([i915#1072] / [i915#9732]) -> [SKIP][602] ([i915#1072] / [i915#14544] / [i915#9732]) +8 other tests skip
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-3/igt@kms_psr@psr-sprite-plane-move.html
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr2-primary-blt:
- shard-dg1: [SKIP][603] ([i915#1072] / [i915#9732]) -> [SKIP][604] ([i915#1072] / [i915#4423] / [i915#9732])
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg1-13/igt@kms_psr@psr2-primary-blt.html
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-19/igt@kms_psr@psr2-primary-blt.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: [SKIP][605] ([i915#14544] / [i915#5289]) -> [SKIP][606] ([i915#5289])
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_selftest@drm_framebuffer:
- shard-dg1: [ABORT][607] ([i915#13179]) -> [ABORT][608] ([i915#13179] / [i915#16508]) +1 other test abort
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg1-16/igt@kms_selftest@drm_framebuffer.html
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-14/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-rkl: [SKIP][609] ([i915#14544] / [i915#3555]) -> [SKIP][610] ([i915#3555]) +3 other tests skip
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@kms_setmode@basic-clone-single-crtc.html
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-5/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-rkl: [SKIP][611] ([i915#3555]) -> [SKIP][612] ([i915#14544] / [i915#3555])
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg1: [SKIP][613] ([i915#9906]) -> [SKIP][614] ([i915#4423] / [i915#9906])
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-dg1-14/igt@kms_vrr@seamless-rr-switch-vrr.html
[614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: [SKIP][615] ([i915#2435]) -> [SKIP][616] ([i915#14544] / [i915#2435])
[615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-2/igt@perf@per-context-mode-unprivileged.html
[616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
* igt@prime_udl@share-import:
- shard-rkl: [SKIP][617] ([i915#14544] / [i915#16420]) -> [SKIP][618] ([i915#16420])
[617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@prime_udl@share-import.html
[618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-8/igt@prime_udl@share-import.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: [SKIP][619] ([i915#14544] / [i915#9917]) -> [SKIP][620] ([i915#9917]) +1 other test skip
[619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9012/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
[620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365
[i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
[i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15751]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15751
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056
[i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066
[i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079
[i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
[i915#16090]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16090
[i915#16168]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16168
[i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
[i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184
[i915#16226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16226
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386
[i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420
[i915#16451]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16451
[i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464
[i915#16466]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16466
[i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471
[i915#16479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16479
[i915#16490]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16490
[i915#16503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16503
[i915#16508]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16508
[i915#16594]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16594
[i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600
[i915#16604]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16604
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3710]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3710
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9012 -> IGTPW_15548
CI-20190529: 20190529
CI_DRM_18842: 22852552aa1b7198931842ddf824af4dd09e2814 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15548: 2f7786286e5ff878fd032ca9e8e11be46f98c272 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9012: d94a55886c7eec82a791728d3cc1c4a6aa945281 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/index.html
[-- Attachment #2: Type: text/html, Size: 203411 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-07-17 17:59 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-17 7:52 [PATCH i-g-t v3] tests/xe_debugfs: add uc debugfs validation and read tests Sobin Thomas
2026-07-17 9:04 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-07-17 9:04 ` ✓ i915.CI.BAT: " Patchwork
2026-07-17 12:33 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-07-17 17:58 ` ✓ i915.CI.Full: success " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox