* [PATCH i-g-t, v2] tests/amdgpu/amd_hotplug: Check the suspend state after resume
@ 2025-03-11 8:13 Tom Chung
2025-03-11 8:48 ` ✓ Xe.CI.BAT: success for tests/amdgpu/amd_hotplug: Check the suspend state after resume (rev2) Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Tom Chung @ 2025-03-11 8:13 UTC (permalink / raw)
To: igt-dev; +Cc: alex.hung, sunpeng.li, chiahsuan.chung
[Why & How]
Check the last hardware sleep state after resume to make sure
last suspend really reached hardware sleep state.
Make sure to enable the suspend related settings in kernel config
Linux Kernel Configuration
└─>Power management and ACPI options
Suspend to RAM and standby
ACPI (Advanced Configuration and Power Interface) Support
Signed-off-by: Tom Chung <chiahsuan.chung@amd.com>
---
v2: add kernel config note in commit messages
tests/amdgpu/amd_hotplug.c | 47 ++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/tests/amdgpu/amd_hotplug.c b/tests/amdgpu/amd_hotplug.c
index c13bf49d3..ee3256c0b 100644
--- a/tests/amdgpu/amd_hotplug.c
+++ b/tests/amdgpu/amd_hotplug.c
@@ -27,6 +27,8 @@ IGT_TEST_DESCRIPTION("Test simulated hotplugging on connectors");
/* Maximum pipes on any AMD ASIC. */
#define MAX_PIPES 6
+#define LAST_HW_SLEEP_PATH "/sys/power/suspend_stats/last_hw_sleep"
+#define MEM_SLEEP_PATH "/sys/power/mem_sleep"
/* Common test data. */
typedef struct data {
@@ -98,6 +100,46 @@ static void test_fini(data_t *data)
igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, 0);
}
+/* Check if mem_sleep is s2idle */
+static bool is_system_s2idle(void)
+{
+ int fd;
+ char dst[64];
+ int read_byte;
+
+ fd = open(MEM_SLEEP_PATH, O_RDONLY);
+ if (fd == -1)
+ igt_skip("Open %s file error\n", MEM_SLEEP_PATH);
+
+ read_byte = read(fd, dst, sizeof(dst));
+ close(fd);
+
+ if (read_byte <= 0)
+ igt_skip("Read %s file error\n", MEM_SLEEP_PATH);
+
+ return strstr(dst, "[s2idle]");
+}
+
+/* return the last hw_sleep duration time */
+static int get_last_hw_sleep_time(void)
+{
+ int fd;
+ char dst[64];
+ int read_byte;
+
+ fd = open(LAST_HW_SLEEP_PATH, O_RDONLY);
+ if (fd == -1)
+ igt_skip("Open HW sleep statistics file error\n");
+
+ read_byte = read(fd, dst, sizeof(dst));
+ close(fd);
+
+ if (read_byte <= 0)
+ igt_skip("Read HW sleep statistics file error\n");
+
+ return strtol(dst, NULL, 10);
+}
+
static void test_hotplug_basic(data_t *data, bool suspend)
{
igt_output_t *output;
@@ -131,8 +173,13 @@ static void test_hotplug_basic(data_t *data, bool suspend)
}
if (suspend) {
+ if (!is_system_s2idle())
+ igt_skip("System is not configured for s2idle\n");
+
igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
SUSPEND_TEST_NONE);
+ igt_assert_f(get_last_hw_sleep_time() > 0,
+ "Suspend did not reach hardware sleep state\n");
}
/* Trigger hotplug and confirm reference image is the same. */
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* ✓ Xe.CI.BAT: success for tests/amdgpu/amd_hotplug: Check the suspend state after resume (rev2)
2025-03-11 8:13 [PATCH i-g-t, v2] tests/amdgpu/amd_hotplug: Check the suspend state after resume Tom Chung
@ 2025-03-11 8:48 ` Patchwork
2025-03-11 9:05 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2025-03-11 8:48 UTC (permalink / raw)
To: Tom Chung; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1673 bytes --]
== Series Details ==
Series: tests/amdgpu/amd_hotplug: Check the suspend state after resume (rev2)
URL : https://patchwork.freedesktop.org/series/146067/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8270_BAT -> XEIGTPW_12743_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12743_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_exec_basic@twice-bindexecqueue-userptr-rebind:
- bat-adlp-vf: [PASS][1] -> [ABORT][2] ([Intel XE#4491])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-userptr-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-userptr-rebind.html
[Intel XE#4491]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4491
Build changes
-------------
* IGT: IGT_8270 -> IGTPW_12743
* Linux: xe-2789-714f93e4c086c6e07187597bd446752f5f65b544 -> xe-2793-003c44ec0b7d86569bd13d4a810ee24176c3d034
IGTPW_12743: 12743
IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2789-714f93e4c086c6e07187597bd446752f5f65b544: 714f93e4c086c6e07187597bd446752f5f65b544
xe-2793-003c44ec0b7d86569bd13d4a810ee24176c3d034: 003c44ec0b7d86569bd13d4a810ee24176c3d034
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/index.html
[-- Attachment #2: Type: text/html, Size: 2249 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ i915.CI.BAT: success for tests/amdgpu/amd_hotplug: Check the suspend state after resume (rev2)
2025-03-11 8:13 [PATCH i-g-t, v2] tests/amdgpu/amd_hotplug: Check the suspend state after resume Tom Chung
2025-03-11 8:48 ` ✓ Xe.CI.BAT: success for tests/amdgpu/amd_hotplug: Check the suspend state after resume (rev2) Patchwork
@ 2025-03-11 9:05 ` Patchwork
2025-03-12 2:23 ` ✗ Xe.CI.Full: failure " Patchwork
2025-03-13 16:50 ` [PATCH i-g-t,v2] tests/amdgpu/amd_hotplug: Check the suspend state after resume Alex Hung
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2025-03-11 9:05 UTC (permalink / raw)
To: Tom Chung; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3176 bytes --]
== Series Details ==
Series: tests/amdgpu/amd_hotplug: Check the suspend state after resume (rev2)
URL : https://patchwork.freedesktop.org/series/146067/
State : success
== Summary ==
CI Bug Log - changes from IGT_8270 -> IGTPW_12743
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12743/index.html
Participating hosts (44 -> 42)
------------------------------
Additional (1): fi-skl-6600u
Missing (3): fi-glk-j4005 bat-arlh-2 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12743 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12743/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@runner@aborted:
- fi-skl-6600u: NOTRUN -> [FAIL][3] ([i915#13818])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12743/fi-skl-6600u/igt@runner@aborted.html
#### Possible fixes ####
* igt@i915_module_load@load:
- bat-mtlp-9: [DMESG-WARN][4] ([i915#13494]) -> [PASS][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/bat-mtlp-9/igt@i915_module_load@load.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12743/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][6] ([i915#12061]) -> [PASS][7] +1 other test pass
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/bat-mtlp-8/igt@i915_selftest@live.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12743/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [DMESG-WARN][8] ([i915#13735]) -> [PASS][9] +132 other tests pass
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12743/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#13818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13818
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8270 -> IGTPW_12743
* Linux: CI_DRM_16259 -> CI_DRM_16261
CI-20190529: 20190529
CI_DRM_16259: fd356d116b876e8778d2a52820c832f95dcdd3d5 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16261: 003c44ec0b7d86569bd13d4a810ee24176c3d034 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12743: 12743
IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12743/index.html
[-- Attachment #2: Type: text/html, Size: 3986 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Xe.CI.Full: failure for tests/amdgpu/amd_hotplug: Check the suspend state after resume (rev2)
2025-03-11 8:13 [PATCH i-g-t, v2] tests/amdgpu/amd_hotplug: Check the suspend state after resume Tom Chung
2025-03-11 8:48 ` ✓ Xe.CI.BAT: success for tests/amdgpu/amd_hotplug: Check the suspend state after resume (rev2) Patchwork
2025-03-11 9:05 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-03-12 2:23 ` Patchwork
2025-03-13 16:50 ` [PATCH i-g-t,v2] tests/amdgpu/amd_hotplug: Check the suspend state after resume Alex Hung
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2025-03-12 2:23 UTC (permalink / raw)
To: Tom Chung; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 82928 bytes --]
== Series Details ==
Series: tests/amdgpu/amd_hotplug: Check the suspend state after resume (rev2)
URL : https://patchwork.freedesktop.org/series/146067/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8270_full -> XEIGTPW_12743_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12743_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12743_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 (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12743_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@async-flip-with-page-flip-events:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@kms_async_flips@async-flip-with-page-flip-events.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-8/igt@kms_async_flips@async-flip-with-page-flip-events.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@xe_oa@buffer-size@rcs-0-128k}:
- shard-bmg: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-7/igt@xe_oa@buffer-size@rcs-0-128k.html
New tests
---------
New tests have been introduced between XEIGT_8270_full and XEIGTPW_12743_full:
### New IGT tests (22) ###
* igt@xe_render_copy@render-full:
- Statuses : 3 pass(s)
- Exec time: [0.02, 0.05] s
* igt@xe_render_copy@render-full@render-linear-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.01] s
* igt@xe_render_copy@render-full@render-tile4-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.01] s
* igt@xe_render_copy@render-full@render-tile64-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.01] s
* igt@xe_render_copy@render-full@render-xmajor-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.01] s
* igt@xe_render_copy@render-hstripes:
- Statuses : 3 pass(s)
- Exec time: [0.06, 0.12] s
* igt@xe_render_copy@render-hstripes@render-linear-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.02, 0.03] s
* igt@xe_render_copy@render-hstripes@render-tile4-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.01, 0.03] s
* igt@xe_render_copy@render-hstripes@render-tile64-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.01, 0.03] s
* igt@xe_render_copy@render-hstripes@render-xmajor-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.01, 0.04] s
* igt@xe_render_copy@render-random:
- Statuses : 3 pass(s)
- Exec time: [0.03, 0.06] s
* igt@xe_render_copy@render-random@render-linear-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.01] s
* igt@xe_render_copy@render-square:
- Statuses : 3 pass(s)
- Exec time: [0.05, 0.13] s
* igt@xe_render_copy@render-square@render-linear-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.01, 0.03] s
* igt@xe_render_copy@render-square@render-tile4-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.01, 0.03] s
* igt@xe_render_copy@render-square@render-tile64-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.01, 0.02] s
* igt@xe_render_copy@render-square@render-xmajor-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.01, 0.04] s
* igt@xe_render_copy@render-vstripes:
- Statuses : 3 pass(s)
- Exec time: [0.04, 0.08] s
* igt@xe_render_copy@render-vstripes@render-linear-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.01, 0.03] s
* igt@xe_render_copy@render-vstripes@render-tile4-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.01, 0.02] s
* igt@xe_render_copy@render-vstripes@render-tile64-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.01] s
* igt@xe_render_copy@render-vstripes@render-xmajor-256x256:
- Statuses : 3 pass(s)
- Exec time: [0.01, 0.02] s
Known issues
------------
Here are the changes found in XEIGTPW_12743_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#3768])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-464/igt@kms_async_flips@invalid-async-flip-atomic.html
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#3768])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@kms_async_flips@invalid-async-flip-atomic.html
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#3768])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#664])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#3279])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [DMESG-WARN][9] ([Intel XE#324]) +4 other tests dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2327]) +5 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-2/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#316]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407]) +5 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +17 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-8/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2328])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb.html
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#619])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb.html
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1467])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +16 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#607])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1477])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +17 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2191]) +4 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-1/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2191])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#367]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#367]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-7/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#367]) +4 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2887]) +17 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2907])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +15 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#3432]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][31] ([Intel XE#3862])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#455] / [Intel XE#787]) +37 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#787]) +131 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#4416]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-2/igt@kms_cdclk@plane-scaling.html
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2724])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#4416]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-2.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#306]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-436/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2325]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#306]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-5/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2252]) +13 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#373]) +11 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-435/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +13 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-2/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2390])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#307])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#1178])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@kms_content_protection@legacy@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#3304])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-435/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][48] ([Intel XE#1188])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-434/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2320]) +5 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#308]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1424]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-dp-2:
- shard-bmg: [PASS][52] -> [INCOMPLETE][53] ([Intel XE#4148]) +1 other test incomplete
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-dp-2.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-dp-2.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#323])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#323]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2286])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#309]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#2291]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1508])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1340]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#4494])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#3009])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#4354])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#455]) +10 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2244]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#4422])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#776])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#703])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@kms_feature_discovery@display-3x.html
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2373])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_feature_discovery@display-3x.html
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#703])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-434/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1421]) +7 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][73] ([Intel XE#3321]) +3 other tests fail
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2316]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip:
- shard-bmg: [PASS][75] -> [SKIP][76] ([Intel XE#2316]) +6 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@kms_flip@2x-plain-flip.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#310])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-464/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#886]) +3 other tests fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-8/igt@kms_flip@blocking-wf_vblank.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-8/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@a-dp2:
- shard-bmg: [PASS][80] -> [FAIL][81] ([Intel XE#2882]) +1 other test fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@kms_flip@blocking-wf_vblank@a-dp2.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-2/igt@kms_flip@blocking-wf_vblank@a-dp2.html
* igt@kms_flip@bo-too-big-interruptible@a-edp1:
- shard-lnl: NOTRUN -> [TIMEOUT][82] ([Intel XE#1504]) +1 other test timeout
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-6/igt@kms_flip@bo-too-big-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][83] -> [FAIL][84] ([Intel XE#301]) +3 other tests fail
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3:
- shard-bmg: [PASS][85] -> [FAIL][86] ([Intel XE#3321]) +2 other tests fail
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank@b-dp2:
- shard-dg2-set2: NOTRUN -> [FAIL][87] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank@b-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a2:
- shard-dg2-set2: NOTRUN -> [FAIL][88] ([Intel XE#301]) +3 other tests fail
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1401] / [Intel XE#1745]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2293]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1401]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1397]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#651]) +20 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#656]) +4 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2312]) +20 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2311]) +25 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#4141]) +8 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#656]) +38 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [PASS][101] -> [SKIP][102] ([Intel XE#656]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#651]) +24 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1469])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2313]) +31 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#653]) +32 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2340])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@kms_getfb@getfb2-accept-ccs.html
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#2340])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-3/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#346])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#346])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#4298])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_plane@plane-position-covered@pipe-a-plane-3:
- shard-lnl: [PASS][112] -> [DMESG-FAIL][113] ([Intel XE#324])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#599]) +4 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-1/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2393])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-2/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2493])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@kms_plane_multiple@tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#2493])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2763]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#2763]) +15 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2763]) +14 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#870])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#870])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-435/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#736])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][125] -> [FAIL][126] ([Intel XE#718])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#1489]) +5 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#2893]) +5 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-3/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#1489]) +9 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1406]) +5 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-3/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-464/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr2-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2234] / [Intel XE#2850]) +18 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2414])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#3414]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1127])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2330])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1127])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_setmode@basic:
- shard-bmg: [PASS][140] -> [FAIL][141] ([Intel XE#2883]) +2 other tests fail
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_setmode@basic.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@kms_setmode@basic.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#1435]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
- shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1435]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-8/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][144] ([Intel XE#899]) +3 other tests fail
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#756])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#756])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-436/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#756]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-5/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#1091] / [Intel XE#2849])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-464/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#1123]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_eu_stall@blocking-read:
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#4497])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-436/igt@xe_eu_stall@blocking-read.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#2905]) +12 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-434/igt@xe_eudebug@basic-close.html
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#2905]) +15 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-2/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2905]) +11 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2905] / [Intel XE#3889])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
* igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd:
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#688]) +6 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-2/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2322]) +6 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-rebind:
- shard-dg2-set2: [PASS][157] -> [SKIP][158] ([Intel XE#1392]) +5 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@xe_exec_basic@multigpu-once-rebind.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@xe_exec_basic@multigpu-once-rebind.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1392]) +7 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-2/igt@xe_exec_basic@multigpu-once-userptr.html
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#1392])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#288]) +28 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#2360]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#2229])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-8/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2229])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_oa@mi-rpc:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@xe_oa@mi-rpc.html
* igt@xe_oa@syncs-userptr-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-463/igt@xe_oa@syncs-userptr-wait-cfg.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#977])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-463/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2236])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@xe_pat@pat-index-xelpg.html
- shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#979])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#979])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#2284]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-8/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#584]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-8/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-bmg: NOTRUN -> [ABORT][173] ([Intel XE#4268]) +2 other tests abort
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-7/igt@xe_pm@s4-vm-bind-unbind-all.html
- shard-dg2-set2: NOTRUN -> [ABORT][174] ([Intel XE#4268])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: NOTRUN -> [ABORT][175] ([Intel XE#4268])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-6/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#944]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-8/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#944]) +2 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-434/igt@xe_query@multigpu-query-topology.html
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#944]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-1/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#3342])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#4351])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-436/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
#### Possible fixes ####
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-bmg: [SKIP][181] ([Intel XE#2291]) -> [PASS][182] +3 other tests pass
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-7/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2-set2: [SKIP][183] ([Intel XE#309]) -> [PASS][184] +3 other tests pass
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-466/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-hdmi-a6-dp4:
- shard-dg2-set2: [INCOMPLETE][185] ([Intel XE#2049]) -> [PASS][186] +1 other test pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-hdmi-a6-dp4.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-434/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][187] ([Intel XE#3321]) -> [PASS][188] +1 other test pass
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-bmg: [SKIP][189] ([Intel XE#2316]) -> [PASS][190] +1 other test pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_flip@2x-flip-vs-panning-interruptible.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-7/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2-set2: [SKIP][191] ([Intel XE#310]) -> [PASS][192] +1 other test pass
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:
- shard-dg2-set2: [FAIL][193] ([Intel XE#301]) -> [PASS][194] +4 other tests pass
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][195] ([Intel XE#656]) -> [PASS][196] +2 other tests pass
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2-set2: [SKIP][197] ([Intel XE#4328]) -> [PASS][198]
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_joiner@basic-force-big-joiner.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@kms_joiner@basic-force-big-joiner.html
- shard-bmg: [SKIP][199] ([Intel XE#3012]) -> [PASS][200]
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-7/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_plane@plane-position-covered@pipe-a-plane-4:
- shard-lnl: [DMESG-FAIL][201] ([Intel XE#324]) -> [PASS][202]
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html
* igt@kms_rmfb@close-fd@pipe-a-edp-1:
- shard-lnl: [DMESG-WARN][203] ([Intel XE#324]) -> [PASS][204]
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-3/igt@kms_rmfb@close-fd@pipe-a-edp-1.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-1/igt@kms_rmfb@close-fd@pipe-a-edp-1.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-dg2-set2: [SKIP][205] ([Intel XE#1392]) -> [PASS][206] +1 other test pass
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-435/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [SKIP][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232]) ([Intel XE#378]) -> ([PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-5/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-6/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-6/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-3/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-3/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-5/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-3/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-1/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-6/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-1/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-1/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-6/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-6/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-4/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-4/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-4/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-7/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-8/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-5/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-8/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-8/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-7/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-7/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-8/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-5/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-5/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-5/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-3/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-1/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-1/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-8/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-6/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-7/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-2/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-2/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-3/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-8/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-1/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-7/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-7/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-3/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-3/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-8/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-4/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-6/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-2/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [SKIP][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283]) ([Intel XE#378]) -> ([PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-466/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-466/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-435/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-435/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-435/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-432/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-432/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-436/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-436/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-432/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-466/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-466/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-436/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-434/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-434/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-434/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-466/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-433/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-463/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-433/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-435/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-435/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-436/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-436/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-464/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-464/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-464/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-463/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-463/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-435/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-464/igt@xe_module_load@load.html
* igt@xe_oa@buffer-size:
- shard-lnl: [FAIL][308] -> [PASS][309]
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-8/igt@xe_oa@buffer-size.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-lnl-5/igt@xe_oa@buffer-size.html
#### Warnings ####
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][310] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][311] ([Intel XE#787]) +5 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][312] ([Intel XE#787]) -> [SKIP][313] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][314] ([Intel XE#1178]) -> [SKIP][315] ([Intel XE#2341])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_content_protection@atomic.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: [SKIP][316] ([Intel XE#455]) -> [FAIL][317] ([Intel XE#1178])
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_content_protection@lic-type-0.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-435/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [SKIP][318] ([Intel XE#455]) -> [FAIL][319] ([Intel XE#1188])
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_content_protection@uevent.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-434/igt@kms_content_protection@uevent.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt:
- shard-dg2-set2: [SKIP][320] ([Intel XE#656]) -> [SKIP][321] ([Intel XE#651]) +8 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][322] ([Intel XE#2312]) -> [SKIP][323] ([Intel XE#2311]) +6 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][324] ([Intel XE#2311]) -> [SKIP][325] ([Intel XE#2312]) +5 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][326] ([Intel XE#651]) -> [SKIP][327] ([Intel XE#656]) +5 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][328] ([Intel XE#2312]) -> [SKIP][329] ([Intel XE#4141]) +4 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][330] ([Intel XE#4141]) -> [SKIP][331] ([Intel XE#2312]) +7 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][332] ([Intel XE#2313]) -> [SKIP][333] ([Intel XE#2312]) +8 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][334] ([Intel XE#656]) -> [SKIP][335] ([Intel XE#653]) +6 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][336] ([Intel XE#2312]) -> [SKIP][337] ([Intel XE#2313]) +5 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][338] ([Intel XE#653]) -> [SKIP][339] ([Intel XE#656]) +8 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][340] ([Intel XE#362]) -> [SKIP][341] ([Intel XE#1500])
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_pm@s4-basic-exec:
- shard-bmg: [ABORT][342] ([Intel XE#4054]) -> [ABORT][343] ([Intel XE#4268])
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@xe_pm@s4-basic-exec.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/shard-bmg-4/igt@xe_pm@s4-basic-exec.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4054
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4148]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4148
[Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4328
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
[Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8270 -> IGTPW_12743
* Linux: xe-2789-714f93e4c086c6e07187597bd446752f5f65b544 -> xe-2793-003c44ec0b7d86569bd13d4a810ee24176c3d034
IGTPW_12743: 12743
IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2789-714f93e4c086c6e07187597bd446752f5f65b544: 714f93e4c086c6e07187597bd446752f5f65b544
xe-2793-003c44ec0b7d86569bd13d4a810ee24176c3d034: 003c44ec0b7d86569bd13d4a810ee24176c3d034
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12743/index.html
[-- Attachment #2: Type: text/html, Size: 96022 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH i-g-t,v2] tests/amdgpu/amd_hotplug: Check the suspend state after resume
2025-03-11 8:13 [PATCH i-g-t, v2] tests/amdgpu/amd_hotplug: Check the suspend state after resume Tom Chung
` (2 preceding siblings ...)
2025-03-12 2:23 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-03-13 16:50 ` Alex Hung
3 siblings, 0 replies; 5+ messages in thread
From: Alex Hung @ 2025-03-13 16:50 UTC (permalink / raw)
To: Tom Chung, igt-dev; +Cc: sunpeng.li
Reviewed-by: Alex Hung <alex.hung@amd.com>
On 3/11/25 02:13, Tom Chung wrote:
> [Why & How]
> Check the last hardware sleep state after resume to make sure
> last suspend really reached hardware sleep state.
>
> Make sure to enable the suspend related settings in kernel config
>
> Linux Kernel Configuration
> └─>Power management and ACPI options
> Suspend to RAM and standby
> ACPI (Advanced Configuration and Power Interface) Support
>
> Signed-off-by: Tom Chung <chiahsuan.chung@amd.com>
> ---
> v2: add kernel config note in commit messages
>
> tests/amdgpu/amd_hotplug.c | 47 ++++++++++++++++++++++++++++++++++++++
> 1 file changed, 47 insertions(+)
>
> diff --git a/tests/amdgpu/amd_hotplug.c b/tests/amdgpu/amd_hotplug.c
> index c13bf49d3..ee3256c0b 100644
> --- a/tests/amdgpu/amd_hotplug.c
> +++ b/tests/amdgpu/amd_hotplug.c
> @@ -27,6 +27,8 @@ IGT_TEST_DESCRIPTION("Test simulated hotplugging on connectors");
>
> /* Maximum pipes on any AMD ASIC. */
> #define MAX_PIPES 6
> +#define LAST_HW_SLEEP_PATH "/sys/power/suspend_stats/last_hw_sleep"
> +#define MEM_SLEEP_PATH "/sys/power/mem_sleep"
>
> /* Common test data. */
> typedef struct data {
> @@ -98,6 +100,46 @@ static void test_fini(data_t *data)
> igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, 0);
> }
>
> +/* Check if mem_sleep is s2idle */
> +static bool is_system_s2idle(void)
> +{
> + int fd;
> + char dst[64];
> + int read_byte;
> +
> + fd = open(MEM_SLEEP_PATH, O_RDONLY);
> + if (fd == -1)
> + igt_skip("Open %s file error\n", MEM_SLEEP_PATH);
> +
> + read_byte = read(fd, dst, sizeof(dst));
> + close(fd);
> +
> + if (read_byte <= 0)
> + igt_skip("Read %s file error\n", MEM_SLEEP_PATH);
> +
> + return strstr(dst, "[s2idle]");
> +}
> +
> +/* return the last hw_sleep duration time */
> +static int get_last_hw_sleep_time(void)
> +{
> + int fd;
> + char dst[64];
> + int read_byte;
> +
> + fd = open(LAST_HW_SLEEP_PATH, O_RDONLY);
> + if (fd == -1)
> + igt_skip("Open HW sleep statistics file error\n");
> +
> + read_byte = read(fd, dst, sizeof(dst));
> + close(fd);
> +
> + if (read_byte <= 0)
> + igt_skip("Read HW sleep statistics file error\n");
> +
> + return strtol(dst, NULL, 10);
> +}
> +
> static void test_hotplug_basic(data_t *data, bool suspend)
> {
> igt_output_t *output;
> @@ -131,8 +173,13 @@ static void test_hotplug_basic(data_t *data, bool suspend)
> }
>
> if (suspend) {
> + if (!is_system_s2idle())
> + igt_skip("System is not configured for s2idle\n");
> +
> igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> SUSPEND_TEST_NONE);
> + igt_assert_f(get_last_hw_sleep_time() > 0,
> + "Suspend did not reach hardware sleep state\n");
> }
>
> /* Trigger hotplug and confirm reference image is the same. */
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-03-13 16:51 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-11 8:13 [PATCH i-g-t, v2] tests/amdgpu/amd_hotplug: Check the suspend state after resume Tom Chung
2025-03-11 8:48 ` ✓ Xe.CI.BAT: success for tests/amdgpu/amd_hotplug: Check the suspend state after resume (rev2) Patchwork
2025-03-11 9:05 ` ✓ i915.CI.BAT: " Patchwork
2025-03-12 2:23 ` ✗ Xe.CI.Full: failure " Patchwork
2025-03-13 16:50 ` [PATCH i-g-t,v2] tests/amdgpu/amd_hotplug: Check the suspend state after resume Alex Hung
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox