* [PATCH i-g-t v3] tests/intel/xe_ras: Add test for GPU health indicator
@ 2026-09-02 2:58 Soham Purkait
2026-09-02 3:46 ` ✓ i915.CI.BAT: success for tests/intel/xe_ras: Add test for GPU health indicator (rev4) Patchwork
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Soham Purkait @ 2026-09-02 2:58 UTC (permalink / raw)
To: igt-dev, riana.tauro, badal.nilawar, kamil.konieczny, sk.anirban,
raag.jadav
Cc: anshuman.gupta, soham.purkait
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 4879 bytes --]
Add a new Xe RAS test exercising the gpu_health sysfs attribute
exposed by the Xe driver on platforms that provide the system
controller. The attribute reports and allows updating the GPU
health state.
The gpu-health subtest validates each valid state by writing it
and reading the value back, and checks that invalid writes are
rejected with -EINVAL, guarding against regressions in the
implementation.
v1:
- Platform-conditional skip w/o fd leak. (Anirban)
- Restore via exit handler. (Anirban)
v2:
- Remove dead-code and extra comments. (Anirban)
- Initialize exit handler under igt_subtest. (Anirban)
v3:
- Move igt_info to the normal cleanup path when
restoring gpu_health. (Anirban)
Signed-off-by: Soham Purkait <soham.purkait@intel.com>
Reviewed-by: Sk Anirban <sk.anirban@intel.com>
---
tests/intel/xe_ras.c | 131 +++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 132 insertions(+)
create mode 100644 tests/intel/xe_ras.c
diff --git a/tests/intel/xe_ras.c b/tests/intel/xe_ras.c
new file mode 100644
index 000000000..f3b507ce0
--- /dev/null
+++ b/tests/intel/xe_ras.c
@@ -0,0 +1,131 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#include <errno.h>
+#include <string.h>
+#include <unistd.h>
+
+#include "igt.h"
+#include "igt_sysfs.h"
+
+/**
+ * TEST: Test Xe RAS (Reliability, Availability, Serviceability) functionality
+ * Category: Core
+ * Mega feature: RAS
+ * Sub-category: RAS tests
+ * Functionality: ras
+ * Test category: Functional tests
+ *
+ * SUBTEST: gpu-health
+ * Description: Verify the gpu_health sysfs attribute accepts each valid
+ * state (ok/warning/critical) and rejects invalid writes
+ * with EINVAL.
+ */
+
+IGT_TEST_DESCRIPTION("Tests for Xe RAS");
+
+#define GPU_HEALTH_ATTR "device/gpu_health"
+
+static const char * const gpu_health_states[] = {
+ "ok",
+ "warning",
+ "critical",
+};
+
+static struct {
+ int sys_fd;
+ char *orig_health;
+} gpu_health_ctx = { .sys_fd = -1 };
+
+static void restore_gpu_health(int sig)
+{
+ if (gpu_health_ctx.sys_fd < 0 || !gpu_health_ctx.orig_health)
+ return;
+
+ igt_sysfs_set(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR, gpu_health_ctx.orig_health);
+ close(gpu_health_ctx.sys_fd);
+ gpu_health_ctx.sys_fd = -1;
+ if (sig)
+ return;
+ igt_info("Restored initial gpu_health to '%s'\n", gpu_health_ctx.orig_health);
+ free(gpu_health_ctx.orig_health);
+ gpu_health_ctx.orig_health = NULL;
+}
+
+static bool valid_gpu_health(const char *s)
+{
+ int i;
+
+ for (i = 0; i < ARRAY_SIZE(gpu_health_states); i++)
+ if (!strcmp(s, gpu_health_states[i]))
+ return true;
+
+ return false;
+}
+
+static void test_gpu_health(int xe)
+{
+ char *health = NULL;
+ int ret;
+ int i;
+
+ gpu_health_ctx.sys_fd = igt_sysfs_open(xe);
+ igt_assert(gpu_health_ctx.sys_fd >= 0);
+
+ if (!igt_sysfs_has_attr(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR)) {
+ close(gpu_health_ctx.sys_fd);
+ gpu_health_ctx.sys_fd = -1;
+ igt_skip("gpu_health sysfs attribute not exposed by driver\n");
+ }
+
+ gpu_health_ctx.orig_health = igt_sysfs_get(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR);
+ igt_assert_f(gpu_health_ctx.orig_health, "Failed to read %s\n", GPU_HEALTH_ATTR);
+ igt_info("Initial gpu_health: %s\n", gpu_health_ctx.orig_health);
+ igt_assert_f(valid_gpu_health(gpu_health_ctx.orig_health),
+ "Unexpected initial gpu_health value: '%s'\n",
+ gpu_health_ctx.orig_health);
+
+ ret = igt_sysfs_write(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR, "bogus", strlen("bogus"));
+ igt_assert_f(ret == -EINVAL,
+ "Write of invalid value to %s returned %d, expected -EINVAL\n",
+ GPU_HEALTH_ATTR, ret);
+
+ for (i = 0; i < ARRAY_SIZE(gpu_health_states); i++) {
+ const char *state = gpu_health_states[i];
+
+ igt_info("Setting gpu_health to '%s'\n", state);
+
+ igt_assert_f(igt_sysfs_set(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR, state),
+ "Failed to write '%s' to %s\n",
+ state, GPU_HEALTH_ATTR);
+
+ health = igt_sysfs_get(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR);
+ igt_assert(health);
+ igt_assert_f(!strcmp(health, state),
+ "gpu_health readback mismatch: wrote '%s', read '%s'\n",
+ state, health);
+ igt_info("Verified gpu_health state readback for '%s' successfully\n",
+ state);
+ free(health);
+ }
+
+ restore_gpu_health(0);
+}
+
+int igt_main()
+{
+ int xe;
+
+ igt_fixture()
+ xe = drm_open_driver(DRIVER_XE);
+
+ igt_subtest("gpu-health") {
+ igt_install_exit_handler(restore_gpu_health);
+ test_gpu_health(xe);
+ }
+
+ igt_fixture()
+ drm_close_driver(xe);
+}
diff --git a/tests/meson.build b/tests/meson.build
index 1ac89bab7..3c2d4fdda 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -333,6 +333,7 @@ intel_xe_progs = [
'xe_prime_self_import',
'xe_pxp',
'xe_query',
+ 'xe_ras',
'xe_render_copy',
'xe_vm',
'xe_userptr_pressure',
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread* ✓ i915.CI.BAT: success for tests/intel/xe_ras: Add test for GPU health indicator (rev4) 2026-09-02 2:58 [PATCH i-g-t v3] tests/intel/xe_ras: Add test for GPU health indicator Soham Purkait @ 2026-09-02 3:46 ` Patchwork 2026-09-02 7:29 ` ✓ Xe.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-09-02 3:46 UTC (permalink / raw) To: Soham Purkait; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2102 bytes --] == Series Details == Series: tests/intel/xe_ras: Add test for GPU health indicator (rev4) URL : https://patchwork.freedesktop.org/series/170588/ State : success == Summary == CI Bug Log - changes from IGT_9079 -> IGTPW_15771 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/index.html Participating hosts (37 -> 35) ------------------------------ Missing (2): bat-dg2-13 bat-adls-6 Known issues ------------ Here are the changes found in IGTPW_15771 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - bat-rpls-4: [DMESG-WARN][1] ([i915#13400]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9079/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html * igt@kms_pm_rpm@basic-pci-d3-state: - fi-kbl-7567u: [DMESG-WARN][3] ([i915#15673]) -> [PASS][4] +51 other tests pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9079/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html [i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9079 -> IGTPW_15771 * Linux: CI_DRM_19066 -> CI_DRM_19069 CI-20190529: 20190529 CI_DRM_19066: b8f17b16c0f8638b9df4f090511e3ae97210eb77 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_19069: c53467440a5196138d2d6610e269a43b6b47bf6b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15771: 440d5dd616ef1adeff2bbed8aa8db8c0c7600ac8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_9079: 9079 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/index.html [-- Attachment #2: Type: text/html, Size: 2739 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_ras: Add test for GPU health indicator (rev4) 2026-09-02 2:58 [PATCH i-g-t v3] tests/intel/xe_ras: Add test for GPU health indicator Soham Purkait 2026-09-02 3:46 ` ✓ i915.CI.BAT: success for tests/intel/xe_ras: Add test for GPU health indicator (rev4) Patchwork @ 2026-09-02 7:29 ` Patchwork 2026-09-02 14:17 ` ✗ Xe.CI.FULL: failure " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-09-02 7:29 UTC (permalink / raw) To: Purkait, Soham; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5051 bytes --] == Series Details == Series: tests/intel/xe_ras: Add test for GPU health indicator (rev4) URL : https://patchwork.freedesktop.org/series/170588/ State : success == Summary == CI Bug Log - changes from XEIGT_9079_BAT -> XEIGTPW_15771_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (11 -> 11) ------------------------------ Additional (1): bat-bmg-2 Missing (1): bat-nvls-1 Known issues ------------ Here are the changes found in XEIGTPW_15771_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@write: - bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/bat-bmg-2/igt@fbdev@write.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2233]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_flip@basic-flip-vs-modeset: - bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2482]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_frontbuffer_tracking@basic: - bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html * igt@xe_exec_multi_queue@priority: - bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#8364]) +13 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/bat-bmg-2/igt@xe_exec_multi_queue@priority.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2229]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_pat@pat-index-xehpc: - bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#1420] / [Intel XE#7590]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - bat-bmg-2: NOTRUN -> [SKIP][10] ([Intel XE#2245] / [Intel XE#7590]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/bat-bmg-2/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#2236] / [Intel XE#7590]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [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#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434 [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482 [Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419 [Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 Build changes ------------- * IGT: IGT_9079 -> IGTPW_15771 * Linux: xe-5668-b8f17b16c0f8638b9df4f090511e3ae97210eb77 -> xe-5671-c53467440a5196138d2d6610e269a43b6b47bf6b IGTPW_15771: 440d5dd616ef1adeff2bbed8aa8db8c0c7600ac8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_9079: 9079 xe-5668-b8f17b16c0f8638b9df4f090511e3ae97210eb77: b8f17b16c0f8638b9df4f090511e3ae97210eb77 xe-5671-c53467440a5196138d2d6610e269a43b6b47bf6b: c53467440a5196138d2d6610e269a43b6b47bf6b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/index.html [-- Attachment #2: Type: text/html, Size: 5980 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/intel/xe_ras: Add test for GPU health indicator (rev4) 2026-09-02 2:58 [PATCH i-g-t v3] tests/intel/xe_ras: Add test for GPU health indicator Soham Purkait 2026-09-02 3:46 ` ✓ i915.CI.BAT: success for tests/intel/xe_ras: Add test for GPU health indicator (rev4) Patchwork 2026-09-02 7:29 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-09-02 14:17 ` Patchwork 2026-09-02 18:19 ` ✗ i915.CI.Full: " Patchwork 2026-09-04 6:24 ` [PATCH i-g-t v3] tests/intel/xe_ras: Add test for GPU health indicator Tauro, Riana 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-09-02 14:17 UTC (permalink / raw) To: Purkait, Soham; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 36506 bytes --] == Series Details == Series: tests/intel/xe_ras: Add test for GPU health indicator (rev4) URL : https://patchwork.freedesktop.org/series/170588/ State : failure == Summary == CI Bug Log - changes from XEIGT_9079_FULL -> XEIGTPW_15771_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15771_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15771_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15771_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_ras@gpu-health (NEW): - shard-bmg: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-5/igt@xe_ras@gpu-health.html - shard-lnl: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-lnl-2/igt@xe_ras@gpu-health.html New tests --------- New tests have been introduced between XEIGT_9079_FULL and XEIGTPW_15771_FULL: ### New IGT tests (1) ### * igt@xe_ras@gpu-health: - Statuses : 2 skip(s) - Exec time: [0.02, 0.04] s Known issues ------------ Here are the changes found in XEIGTPW_15771_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotreplug-lateclose: - shard-bmg: [PASS][3] -> [ABORT][4] ([Intel XE#8007]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-2/igt@core_hotunplug@hotreplug-lateclose.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-9/igt@core_hotunplug@hotreplug-lateclose.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-4/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2328] / [Intel XE#7367]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +7 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#610] / [Intel XE#7387]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#7679]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-target-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#367]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-10/igt@kms_bw@linear-tiling-1-displays-target-3840x2160p.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2652]) +8 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-7/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][12] -> [INCOMPLETE][13] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#3432]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +12 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_chamelium_color@degamma: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2325] / [Intel XE#7358]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-2/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_color_pipeline@plane-lut1d: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#7358]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-7/igt@kms_chamelium_color_pipeline@plane-lut1d.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2252]) +6 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][19] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-10/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-0: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2390] / [Intel XE#6974]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-7/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2320]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#8265]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-10/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#8680]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-4/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2373] / [Intel XE#7448]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-7/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr1: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2374] / [Intel XE#6127]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-2/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2374] / [Intel XE#6128]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-6/igt@kms_feature_discovery@psr2.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4141]) +12 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2311]) +46 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7061]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7399]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2313]) +48 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#7308]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-8/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#8303]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7283]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-2/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html * igt@kms_plane_lowres@tiling-y: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2393]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-6/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-y: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#5020] / [Intel XE#7348]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-2/igt@kms_plane_multiple@tiling-y.html * igt@kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-9/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-framegap: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#8395] / [Intel XE#8396]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-3/igt@kms_pm_dc@dc3co-vpb-framegap.html * igt@kms_pm_dc@dc3co-vpb-framegap@psr2-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#8396]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-3/igt@kms_pm_dc@dc3co-vpb-framegap@psr2-xrgb8888.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7794]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-10/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@package-g7: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#6814] / [Intel XE#7428]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-2/igt@kms_pm_rpm@package-g7.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#1489]) +6 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-psr2-basic: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-1/igt@kms_psr@fbc-psr2-basic.html * igt@kms_rotation_crc@primary-rotation-270: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2330] / [Intel XE#5813]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#1435] / [Intel XE#8695]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_sharpness_filter@filter-suspend: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#6503]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-5/igt@kms_sharpness_filter@filter-suspend.html * igt@sriov_basic@pf-unbind-with-vf-probed: - shard-bmg: NOTRUN -> [ABORT][52] ([Intel XE#8868]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-7/igt@sriov_basic@pf-unbind-with-vf-probed.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2322] / [Intel XE#7372]) +7 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt@xe_exec_fault_mode@twice-multi-queue: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#8374]) +15 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-4/igt@xe_exec_fault_mode@twice-multi-queue.html * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#8364]) +22 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-2/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html * igt@xe_exec_reset@multi-queue-long-spin-many-queue-switch: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#8369]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-1/igt@xe_exec_reset@multi-queue-long-spin-many-queue-switch.html * igt@xe_exec_threads@threads-hang-userptr-invalidate-race: - shard-lnl: [PASS][57] -> [FAIL][58] ([Intel XE#9096]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-7/igt@xe_exec_threads@threads-hang-userptr-invalidate-race.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-lnl-5/igt@xe_exec_threads@threads-hang-userptr-invalidate-race.html * igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#8378]) +7 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init: - shard-bmg: NOTRUN -> [ABORT][60] ([Intel XE#8007]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init.html * igt@xe_multigpu_svm@mgpu-pagefault-basic: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#6964]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-7/igt@xe_multigpu_svm@mgpu-pagefault-basic.html * igt@xe_page_reclaim@boundary-split: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7793]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-7/igt@xe_page_reclaim@boundary-split.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#1420] / [Intel XE#7590]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-8/igt@xe_pat@pat-index-xehpc.html * igt@xe_pxp@display-pxp-fb: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-8/igt@xe_pxp@display-pxp-fb.html * igt@xe_query@multigpu-query-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#944]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-5/igt@xe_query@multigpu-query-cs-cycles.html #### Possible fixes #### * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2: - shard-bmg: [FAIL][66] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][67] +1 other test pass [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-10/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2.html * igt@kms_fbcon_fbt@psr-suspend: - shard-lnl: [FAIL][68] ([Intel XE#7949]) -> [PASS][69] [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-1/igt@kms_fbcon_fbt@psr-suspend.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-lnl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@basic-flip-vs-wf_vblank: - shard-bmg: [FAIL][70] ([Intel XE#3098]) -> [PASS][71] +1 other test pass [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-8/igt@kms_flip@basic-flip-vs-wf_vblank.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-2/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [FAIL][72] ([Intel XE#301]) -> [PASS][73] +1 other test pass [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [ABORT][74] ([Intel XE#9093]) -> [PASS][75] +1 other test pass [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][76] ([Intel XE#8399]) -> [PASS][77] [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: [FAIL][78] ([Intel XE#7992]) -> [PASS][79] [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][80] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_system_allocator@many-stride-mmap-remap-ro-eocheck: - shard-bmg: [INCOMPLETE][82] ([Intel XE#8159]) -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-10/igt@xe_exec_system_allocator@many-stride-mmap-remap-ro-eocheck.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-mmap-remap-ro-eocheck.html * igt@xe_module_load@load: - shard-bmg: ([PASS][84], [SKIP][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-1/igt@xe_module_load@load.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-3/igt@xe_module_load@load.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-5/igt@xe_module_load@load.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-5/igt@xe_module_load@load.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-10/igt@xe_module_load@load.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-4/igt@xe_module_load@load.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-3/igt@xe_module_load@load.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-9/igt@xe_module_load@load.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-9/igt@xe_module_load@load.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-2/igt@xe_module_load@load.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-6/igt@xe_module_load@load.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-10/igt@xe_module_load@load.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-10/igt@xe_module_load@load.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-8/igt@xe_module_load@load.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-8/igt@xe_module_load@load.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-2/igt@xe_module_load@load.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-1/igt@xe_module_load@load.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-7/igt@xe_module_load@load.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-5/igt@xe_module_load@load.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-6/igt@xe_module_load@load.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-3/igt@xe_module_load@load.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-3/igt@xe_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-8/igt@xe_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-7/igt@xe_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-4/igt@xe_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-10/igt@xe_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-6/igt@xe_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-1/igt@xe_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-6/igt@xe_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-1/igt@xe_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-4/igt@xe_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-4/igt@xe_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-8/igt@xe_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-8/igt@xe_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-8/igt@xe_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-3/igt@xe_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-3/igt@xe_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-3/igt@xe_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-5/igt@xe_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-7/igt@xe_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-7/igt@xe_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-7/igt@xe_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-5/igt@xe_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-2/igt@xe_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-2/igt@xe_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-2/igt@xe_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-9/igt@xe_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-9/igt@xe_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-10/igt@xe_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-5/igt@xe_module_load@load.html * igt@xe_pm@s4-vm-bind-userptr: - shard-bmg: [ABORT][134] ([Intel XE#9101]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-5/igt@xe_pm@s4-vm-bind-userptr.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-9/igt@xe_pm@s4-vm-bind-userptr.html #### Warnings #### * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-lnl: [SKIP][136] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][137] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][138] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][139] ([Intel XE#2509] / [Intel XE#7437]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#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#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127 [Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428 [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437 [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794 [Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935 [Intel XE#7949]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7949 [Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150 [Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303 [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395 [Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396 [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399 [Intel XE#8680]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8680 [Intel XE#8695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8695 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#8868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8868 [Intel XE#9093]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9093 [Intel XE#9096]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9096 [Intel XE#9101]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9101 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_9079 -> IGTPW_15771 * Linux: xe-5668-b8f17b16c0f8638b9df4f090511e3ae97210eb77 -> xe-5671-c53467440a5196138d2d6610e269a43b6b47bf6b IGTPW_15771: 440d5dd616ef1adeff2bbed8aa8db8c0c7600ac8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_9079: 9079 xe-5668-b8f17b16c0f8638b9df4f090511e3ae97210eb77: b8f17b16c0f8638b9df4f090511e3ae97210eb77 xe-5671-c53467440a5196138d2d6610e269a43b6b47bf6b: c53467440a5196138d2d6610e269a43b6b47bf6b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15771/index.html [-- Attachment #2: Type: text/html, Size: 39411 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/xe_ras: Add test for GPU health indicator (rev4) 2026-09-02 2:58 [PATCH i-g-t v3] tests/intel/xe_ras: Add test for GPU health indicator Soham Purkait ` (2 preceding siblings ...) 2026-09-02 14:17 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-09-02 18:19 ` Patchwork 2026-09-04 6:24 ` [PATCH i-g-t v3] tests/intel/xe_ras: Add test for GPU health indicator Tauro, Riana 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-09-02 18:19 UTC (permalink / raw) To: Purkait, Soham; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 145418 bytes --] == Series Details == Series: tests/intel/xe_ras: Add test for GPU health indicator (rev4) URL : https://patchwork.freedesktop.org/series/170588/ State : failure == Summary == CI Bug Log - changes from CI_DRM_19069_full -> IGTPW_15771_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15771_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15771_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15771_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_edge_walk@64x64-left-edge@pipe-d-hdmi-a-1: - shard-dg1: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-14/igt@kms_cursor_edge_walk@64x64-left-edge@pipe-d-hdmi-a-1.html * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-6: - shard-tglu: NOTRUN -> [INCOMPLETE][2] +1 other test incomplete [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-7/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-6.html Known issues ------------ Here are the changes found in IGTPW_15771_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-7/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][4] ([i915#11078]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-7/igt@device_reset@cold-reset-bound.html * igt@gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#9323]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-19/igt@gem_ccs@block-multicopy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#9323]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-2/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#9323]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-tglu: NOTRUN -> [SKIP][8] ([i915#9323]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#7697]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-4/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][10] ([i915#13356] / [i915#16466]) +1 other test incomplete [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk4/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_persistence@legacy-engines-persistence: - shard-snb: NOTRUN -> [SKIP][11] ([i915#1099]) +6 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-snb6/igt@gem_ctx_persistence@legacy-engines-persistence.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [PASS][12] -> [INCOMPLETE][13] ([i915#13390]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-3/igt@gem_eio@in-flight-suspend.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-3/igt@gem_eio@in-flight-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][14] ([i915#13390]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk9/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][15] ([i915#8898]) +1 other test fail [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-snb7/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel-contexts: - shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#4525]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#4525]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-1/igt@gem_exec_balancer@parallel-ordering.html - shard-tglu: NOTRUN -> [SKIP][18] ([i915#4525]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-9/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible: - shard-glk10: NOTRUN -> [SKIP][19] ([i915#6334]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk10/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#6344]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-2/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#4812]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-1/igt@gem_exec_fence@submit3.html - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#4812]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-5/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#3539] / [i915#4852]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-8/igt@gem_exec_flush@basic-wb-rw-before-default.html - shard-dg1: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-16/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-cpu-read: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#14544] / [i915#3281]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#3281]) +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_reloc@basic-gtt-wc: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3281]) +5 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-5/igt@gem_exec_reloc@basic-gtt-wc.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3281]) +7 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-17/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#3281]) +14 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4812]) +4 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-13/igt@gem_exec_schedule@preempt-queue-contexts.html - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_suspend@basic-s3: - shard-glk: NOTRUN -> [INCOMPLETE][33] ([i915#13196] / [i915#13356]) +1 other test incomplete [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk5/igt@gem_exec_suspend@basic-s3.html - shard-rkl: [PASS][34] -> [INCOMPLETE][35] ([i915#13356]) +1 other test incomplete [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-2/igt@gem_exec_suspend@basic-s3.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@gem_exec_suspend@basic-s3.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4860]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-3/igt@gem_fenced_exec_thrash@2-spare-fences.html - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4860]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-17/igt@gem_fenced_exec_thrash@2-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4860]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-6/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][39] ([i915#2190]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-9/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-random: - shard-glk: NOTRUN -> [SKIP][40] ([i915#4613]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk5/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#4613]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@random-engines: - shard-tglu: NOTRUN -> [SKIP][42] ([i915#4613]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-6/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4613]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-8/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap_gtt@basic-write-read: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4077]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-4/igt@gem_mmap_gtt@basic-write-read.html * igt@gem_mmap_gtt@cpuset-big-copy-xy: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4077]) +5 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-1/igt@gem_mmap_gtt@cpuset-big-copy-xy.html * igt@gem_mmap_wc@coherency: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4083]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-8/igt@gem_mmap_wc@coherency.html - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4083]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-12/igt@gem_mmap_wc@coherency.html - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4083]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-4/igt@gem_mmap_wc@coherency.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3282]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-1/igt@gem_partial_pwrite_pread@reads-uncached.html - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3282]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@gem_partial_pwrite_pread@reads-uncached.html - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3282]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-13/igt@gem_partial_pwrite_pread@reads-uncached.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3282]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-1/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@write: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#14544] / [i915#3282]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@gem_partial_pwrite_pread@write.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][54] ([i915#2658]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-snb5/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu-1: NOTRUN -> [WARN][55] ([i915#2658]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4270]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#13398]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-9/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4270]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-1.html - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4270]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-13/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-glk11: NOTRUN -> [SKIP][60] +134 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk11/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#5190] / [i915#8428]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-7/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8428]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-4/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4079]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-19/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@noreloc-s3: - shard-glk: NOTRUN -> [INCOMPLETE][64] ([i915#13809] / [i915#16193]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk2/igt@gem_softpin@noreloc-s3.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3297]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-3/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#3297]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#2527]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-4/igt@gen9_exec_parse@bb-start-far.html - shard-tglu-1: NOTRUN -> [SKIP][70] ([i915#2527] / [i915#2856]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#2856]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-7/igt@gen9_exec_parse@valid-registers.html - shard-dg1: NOTRUN -> [SKIP][72] ([i915#2527]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-14/igt@gen9_exec_parse@valid-registers.html - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#2856]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-5/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@busy-idle@bcs0: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#14073]) +5 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-14/igt@i915_drm_fdinfo@busy-idle@bcs0.html * igt@i915_module_load@resize-bar: - shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#6412]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@i915_module_load@resize-bar.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: [PASS][76] -> [FAIL][77] ([i915#12964]) +1 other test fail [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-dg2-4/igt@i915_pm_rc6_residency@rc6-accuracy.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-5/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][78] ([i915#13790] / [i915#2681]) +1 other test warn [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@system-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][79] ([i915#13356]) +1 other test incomplete [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk8/igt@i915_pm_rpm@system-suspend.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][80] ([i915#6245]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-8/igt@i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][81] ([i915#6245]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#6188]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-2/igt@i915_query@query-topology-coherent-slice-mask.html - shard-dg2: NOTRUN -> [SKIP][83] ([i915#6188]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-8/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-unsupported: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#16079]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-8/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][85] -> [ABORT][86] ([i915#15131]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [PASS][87] -> [INCOMPLETE][88] ([i915#4817]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-4/igt@i915_suspend@fence-restore-untiled.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-4/igt@i915_suspend@fence-restore-untiled.html - shard-glk: [PASS][89] -> [INCOMPLETE][90] ([i915#16182] / [i915#4817]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-glk5/igt@i915_suspend@fence-restore-untiled.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk3/igt@i915_suspend@fence-restore-untiled.html * igt@kms_3d@basic: - shard-mtlp: [PASS][91] -> [SKIP][92] ([i915#15726]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-mtlp-2/igt@kms_3d@basic.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-1/igt@kms_3d@basic.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4212]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-6/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][94] ([i915#14888]) +2 other tests fail [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1: - shard-tglu: [PASS][95] -> [ABORT][96] ([i915#16837] / [i915#16844]) +1 other test abort [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#14544] / [i915#5286]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4538] / [i915#5286]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-tglu: NOTRUN -> [SKIP][99] ([i915#5286]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#5286]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#5286]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][102] +10 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-3/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3638]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3638]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-17/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#3828]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#3828]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-9/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][107] +6 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#14544] / [i915#3638]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#4538] / [i915#5190]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-7/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#5190]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-14/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#10307] / [i915#10434] / [i915#6095]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6095]) +34 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#12313]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs: - shard-glk10: NOTRUN -> [SKIP][115] +234 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk10/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#6095]) +63 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#6095]) +24 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#6095]) +104 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#12313]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][120] ([i915#12313]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][121] ([i915#12313]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-15/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][122] ([i915#12313]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#12313]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#14544] / [i915#6095]) +9 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#6095]) +171 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-15/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][126] ([i915#15582]) +1 other test incomplete [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#6095]) +8 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#14098] / [i915#6095]) +49 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#10307] / [i915#6095]) +82 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][131] +408 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#3742]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-10/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#3742]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][134] ([i915#3742]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-17/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#11151] / [i915#7828]) +5 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#16471]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-18/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#16471]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-2/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#16471]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-8/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#11151] / [i915#14544] / [i915#7828]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#11151] / [i915#7828]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-18/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#11151] / [i915#7828]) +11 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-7/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-8/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#3555] / [i915#9979]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-10/igt@kms_color@deep-color.html * igt@kms_content_protection@content-type-change: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#15865]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#15330]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-tglu: NOTRUN -> [SKIP][147] ([i915#15330]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#15330]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html - shard-rkl: NOTRUN -> [SKIP][149] ([i915#14544] / [i915#15330]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html - shard-dg1: NOTRUN -> [SKIP][150] ([i915#15330]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-19/igt@kms_content_protection@dp-mst-type-0-hdcp14.html - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#15330]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#15865]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-7/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#15865]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-4/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#15865]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-5/igt@kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#15865]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-8/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#13049]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#3555]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#13049]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x170.html - shard-rkl: NOTRUN -> [SKIP][159] ([i915#13049] / [i915#14544]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html - shard-dg1: NOTRUN -> [SKIP][160] ([i915#13049]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-19/igt@kms_cursor_crc@cursor-random-512x170.html - shard-tglu: NOTRUN -> [SKIP][161] ([i915#13049]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-10/igt@kms_cursor_crc@cursor-random-512x170.html - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#13049]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-rkl: [PASS][163] -> [FAIL][164] ([i915#13566]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-128x42.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][165] ([i915#13566]) +1 other test fail [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html - shard-tglu-1: NOTRUN -> [FAIL][166] ([i915#13566]) +1 other test fail [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#14544] / [i915#3555]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#13049]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_edge_walk@64x64-left-edge: - shard-dg1: [PASS][169] -> [DMESG-WARN][170] ([i915#16685]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-dg1-12/igt@kms_cursor_edge_walk@64x64-left-edge.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-14/igt@kms_cursor_edge_walk@64x64-left-edge.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#9809]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#4103]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#4103]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#13046] / [i915#5354]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][175] +38 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-15/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][176] ([i915#15804]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#4103]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#9723]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#9723]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-12/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][180] ([i915#9723]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3804]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev@basic: - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#1257]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_dp_aux_dev@basic.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#13749]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-8/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#13707]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-tglu: NOTRUN -> [SKIP][185] ([i915#13707]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#16867]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-4/igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#16361]) +4 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-3/igt@kms_dsc@dsc-basic.html - shard-rkl: NOTRUN -> [SKIP][188] ([i915#16361]) +3 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_dsc@dsc-basic.html - shard-dg1: NOTRUN -> [SKIP][189] ([i915#16361]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-17/igt@kms_dsc@dsc-basic.html - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#16361]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-1/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#16361]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#16361]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#16680]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-6/igt@kms_fbcon_fbt@psr.html - shard-rkl: NOTRUN -> [SKIP][194] ([i915#16680]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-7/igt@kms_fbcon_fbt@psr.html - shard-dg1: NOTRUN -> [SKIP][195] ([i915#16680]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-18/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][196] ([i915#16680]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-4/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#16084]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-7/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#16081]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#16599]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#658]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@vrr: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#16600]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-19/igt@kms_feature_discovery@vrr.html - shard-tglu: NOTRUN -> [SKIP][202] ([i915#16600]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-10/igt@kms_feature_discovery@vrr.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#9934]) +4 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-8/igt@kms_flip@2x-absolute-wf_vblank.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#9934]) +4 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-17/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#9934]) +6 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3637] / [i915#9934]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][207] ([i915#12745] / [i915#4839]) +1 other test incomplete [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk11/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][208] ([i915#12745] / [i915#4839]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][209] ([i915#12745]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2: - shard-glk11: NOTRUN -> [INCOMPLETE][210] ([i915#12745]) +1 other test incomplete [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk11/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#3637] / [i915#9934]) +9 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-6/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#3637] / [i915#9934]) +6 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3: - shard-dg2: [PASS][213] -> [FAIL][214] ([i915#13027]) +1 other test fail [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-dg2-8/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-1/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3.html * igt@kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][215] ([i915#12745] / [i915#4839] / [i915#6113]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk1/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][216] ([i915#12745] / [i915#6113]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip@modeset-vs-vblank-race-interruptible: - shard-tglu: [PASS][217] -> [ABORT][218] ([i915#16876]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-tglu-10/igt@kms_flip@modeset-vs-vblank-race-interruptible.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-2/igt@kms_flip@modeset-vs-vblank-race-interruptible.html * igt@kms_flip@modeset-vs-vblank-race-interruptible@b-hdmi-a1: - shard-tglu: [PASS][219] -> [ABORT][220] ([i915#16876] / [i915#16881]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-tglu-10/igt@kms_flip@modeset-vs-vblank-race-interruptible@b-hdmi-a1.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-2/igt@kms_flip@modeset-vs-vblank-race-interruptible@b-hdmi-a1.html * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-hdmi-a1: - shard-tglu-1: [PASS][221] -> [ABORT][222] ([i915#16866] / [i915#16876]) +1 other test abort [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-tglu-1/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-hdmi-a1.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-hdmi-a1.html * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@c-hdmi-a1: - shard-tglu-1: [PASS][223] -> [DMESG-WARN][224] ([i915#16866]) +1 other test dmesg-warn [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-tglu-1/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@c-hdmi-a1.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@c-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#15643] / [i915#5190]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#15643]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#15643]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-rkl: NOTRUN -> [SKIP][228] ([i915#14544] / [i915#15643]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#15643]) +4 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#15643]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8813]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#8810] / [i915#8813]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#15643]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: [PASS][234] -> [SKIP][235] ([i915#15672]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#15990] / [i915#8708]) +4 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][237] +44 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#1825]) +7 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#5439]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][240] ([i915#5439]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#15989]) +26 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-10/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff: - shard-rkl: [PASS][242] -> [SKIP][243] ([i915#15989]) +5 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#15990]) +8 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#15989]) +23 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#15991]) +11 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][247] +134 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-8/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#15989]) +6 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-1/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-stridechange: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#15989]) +7 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-16/igt@kms_frontbuffer_tracking@fbchdr-stridechange.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#15102]) +20 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#15991] / [i915#1825]) +7 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#15990] / [i915#8708]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#14544] / [i915#1825]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#15990] / [i915#8708]) +3 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#15989]) +12 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#14544] / [i915#15102]) +3 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#15990]) +15 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#14544]) +19 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-cpu: - shard-glk: [PASS][259] -> [SKIP][260] +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-glk8/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-cpu.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk9/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#15989]) +11 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#15102]) +50 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][263] ([i915#15104] / [i915#15990]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#15104] / [i915#15990]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][265] ([i915#15104] / [i915#15990]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#15102]) +18 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#15991] / [i915#5354]) +9 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#15102]) +13 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-6/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][269] ([i915#15102]) +57 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][270] +97 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#15991]) +15 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-8/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#15990]) +4 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-6/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-gtt.html * igt@kms_hdmi_inject@inject-audio: - shard-mtlp: [PASS][273] -> [SKIP][274] ([i915#15725]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-mtlp-2/igt@kms_hdmi_inject@inject-audio.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8228]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#12713] / [i915#16490]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-5/igt@kms_hdr@brightness-with-hdr.html - shard-dg2: NOTRUN -> [SKIP][277] ([i915#12713] / [i915#16518]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-3/igt@kms_hdr@brightness-with-hdr.html - shard-dg1: NOTRUN -> [SKIP][278] ([i915#12713]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][279] ([i915#12713]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-15/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#16518] / [i915#3555] / [i915#8228]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-5/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#16644] / [i915#3555] / [i915#8228]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#15459]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-14/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#15458]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#15638] / [i915#15722]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_mst@mst-suspend-read-crc: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#16451]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_mst@mst-suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][288] ([i915#12756] / [i915#13409] / [i915#13476] / [i915#16789]) +1 other test incomplete [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#14712]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-4/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#14712]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-glk: NOTRUN -> [DMESG-FAIL][291] ([i915#118] / [i915#16396]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-dg2: NOTRUN -> [SKIP][292] ([i915#14712]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-dg1: NOTRUN -> [SKIP][293] ([i915#14712]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-14/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#15709]) +3 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#15709]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#16386]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#15709]) +5 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-17/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#15709]) +5 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-10/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#15709]) +2 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html - shard-rkl: NOTRUN -> [SKIP][300] ([i915#15709]) +7 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#16386]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-16/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html - shard-tglu: NOTRUN -> [SKIP][302] ([i915#16386]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-9/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#16386]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][304] ([i915#10647] / [i915#12177]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][305] ([i915#10647]) +1 other test fail [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#14259]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_plane_multiple@tiling-4.html - shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#14259]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_multiple@tiling-none@pipe-c-hdmi-a-1: - shard-tglu: [PASS][308] -> [ABORT][309] ([i915#16881]) +3 other tests abort [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-tglu-4/igt@kms_plane_multiple@tiling-none@pipe-c-hdmi-a-1.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-7/igt@kms_plane_multiple@tiling-none@pipe-c-hdmi-a-1.html * igt@kms_plane_multiple@tiling-yf: - shard-tglu: NOTRUN -> [SKIP][310] ([i915#14259]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-10/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#15329]) +4 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html - shard-tglu: NOTRUN -> [SKIP][312] ([i915#15329]) +4 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c: - shard-rkl: [PASS][313] -> [ABORT][314] ([i915#16852]) +1 other test abort [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][315] ([i915#12343] / [i915#9812]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#12343] / [i915#9812]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-pageflip-negative: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#9685]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-5/igt@kms_pm_dc@dc5-pageflip-negative.html - shard-rkl: NOTRUN -> [SKIP][318] ([i915#9685]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_pm_dc@dc5-pageflip-negative.html - shard-dg1: NOTRUN -> [SKIP][319] ([i915#9685]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-18/igt@kms_pm_dc@dc5-pageflip-negative.html - shard-tglu: NOTRUN -> [SKIP][320] ([i915#9685]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-10/igt@kms_pm_dc@dc5-pageflip-negative.html * igt@kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#15948]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-8/igt@kms_pm_dc@dc5-psr.html - shard-rkl: NOTRUN -> [SKIP][322] ([i915#15948]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-3/igt@kms_pm_dc@dc5-psr.html - shard-dg1: NOTRUN -> [SKIP][323] ([i915#15948]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-16/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#3828]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#15739]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html - shard-tglu: NOTRUN -> [SKIP][326] ([i915#15739]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#8430]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#15073]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][329] ([i915#15073]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-16/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#15073]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: [PASS][331] -> [SKIP][332] ([i915#15073]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [PASS][333] -> [SKIP][334] ([i915#15073]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][335] -> [SKIP][336] ([i915#15073]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-tglu: NOTRUN -> [SKIP][337] ([i915#15073]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@pm-caching: - shard-dg1: NOTRUN -> [SKIP][338] ([i915#4077]) +7 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-12/igt@kms_pm_rpm@pm-caching.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][339] ([i915#6524]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#6524] / [i915#6805]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-7/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][341] ([i915#11520]) +6 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][342] ([i915#11520]) +8 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-snb7/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-glk10: NOTRUN -> [SKIP][343] ([i915#11520]) +6 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][344] ([i915#11520]) +4 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk11/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][345] ([i915#11520]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][346] ([i915#11520]) +7 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk8/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#11520] / [i915#14544]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][348] ([i915#11520]) +5 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][349] ([i915#11520]) +5 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][350] ([i915#11520]) +2 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-18/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#9683]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-3/igt@kms_psr2_su@page_flip-nv12.html - shard-rkl: NOTRUN -> [SKIP][352] ([i915#9683]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html - shard-dg1: NOTRUN -> [SKIP][353] ([i915#9683]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-17/igt@kms_psr2_su@page_flip-nv12.html - shard-tglu: NOTRUN -> [SKIP][354] ([i915#9683]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-8/igt@kms_psr2_su@page_flip-nv12.html - shard-mtlp: NOTRUN -> [SKIP][355] ([i915#4348]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-basic: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#9688]) +3 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-6/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@fbc-psr-dpms: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_psr@fbc-psr-dpms.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#9732]) +9 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@pr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#1072] / [i915#9732]) +9 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-5/igt@kms_psr@pr-cursor-mmap-cpu.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][360] ([i915#9732]) +25 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-4/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +23 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-1/igt@kms_psr@psr2-sprite-mmap-cpu.html - shard-dg1: NOTRUN -> [SKIP][362] ([i915#1072] / [i915#9732]) +10 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-14/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#15949]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][364] ([i915#15949]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk: NOTRUN -> [INCOMPLETE][365] ([i915#15500] / [i915#16184]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk8/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#12755] / [i915#15867] / [i915#5190]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-mtlp: NOTRUN -> [SKIP][367] ([i915#12755] / [i915#15867]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][368] ([i915#5289]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][369] ([i915#3555]) +6 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_scaling_modes@scaling-mode-none: - shard-tglu-1: NOTRUN -> [SKIP][370] ([i915#3555]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][371] ([i915#13179]) +1 other test abort [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html - shard-snb: NOTRUN -> [ABORT][372] ([i915#13179]) +1 other test abort [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-snb7/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][373] ([i915#3555]) +2 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@clone-exclusive-crtc: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#3555]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-6/igt@kms_setmode@clone-exclusive-crtc.html - shard-mtlp: NOTRUN -> [SKIP][375] ([i915#3555] / [i915#8809]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-6/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu-1: NOTRUN -> [SKIP][376] ([i915#8623]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][377] ([i915#12276]) +1 other test incomplete [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk9/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][378] ([i915#3555] / [i915#9906]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][379] ([i915#9906]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#9906]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][381] ([i915#9906]) +2 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#9906]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-dg1: NOTRUN -> [SKIP][383] ([i915#9906]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-mtlp: NOTRUN -> [SKIP][384] ([i915#8808] / [i915#9906]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-7/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][385] ([i915#14544] / [i915#2435]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][386] ([i915#2433]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][387] +608 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-snb7/igt@perf_pmu@busy-accuracy-98.html * igt@perf_pmu@module-unload: - shard-snb: NOTRUN -> [ABORT][388] ([i915#15778]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-snb5/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-suspend: - shard-rkl: [PASS][389] -> [INCOMPLETE][390] ([i915#13520]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-3/igt@perf_pmu@rc6-suspend.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu-1: NOTRUN -> [SKIP][391] ([i915#8516]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [SKIP][392] ([i915#14121]) +1 other test skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-3/igt@prime_mmap@test_aperture_limit.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg1: NOTRUN -> [SKIP][393] ([i915#14121]) +1 other test skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-17/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html - shard-mtlp: NOTRUN -> [SKIP][394] ([i915#14121]) +1 other test skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_udl@share-import: - shard-dg1: NOTRUN -> [SKIP][395] ([i915#16420]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-14/igt@prime_udl@share-import.html - shard-tglu: NOTRUN -> [SKIP][396] ([i915#16420]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-7/igt@prime_udl@share-import.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][397] ([i915#3708] / [i915#4077]) +1 other test skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-1/igt@prime_vgem@basic-gtt.html - shard-dg2: NOTRUN -> [SKIP][398] ([i915#3708] / [i915#4077]) +1 other test skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-3/igt@prime_vgem@basic-gtt.html - shard-dg1: NOTRUN -> [SKIP][399] ([i915#3708] / [i915#4077]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-17/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][400] ([i915#3708]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-7/igt@prime_vgem@coherency-gtt.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][401] ([i915#4818]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-1/igt@tools_test@sysfs_l3_parity.html - shard-dg1: NOTRUN -> [SKIP][402] ([i915#4818]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-19/igt@tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][403] ([i915#4818]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-5/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][404] ([i915#13356] / [i915#16348]) -> [PASS][405] +1 other test pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-dg2-5/igt@gem_ccs@suspend-resume.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg2-1/igt@gem_ccs@suspend-resume.html * igt@gem_eio@kms: - shard-tglu: [ABORT][406] ([i915#16837] / [i915#16844]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-tglu-7/igt@gem_eio@kms.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-9/igt@gem_eio@kms.html * igt@gem_exec_big@single: - shard-mtlp: [FAIL][408] ([i915#15871]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-mtlp-8/igt@gem_exec_big@single.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-3/igt@gem_exec_big@single.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: [SKIP][410] ([i915#4270]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-7/igt@gem_pxp@create-regular-buffer.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-7/igt@gem_pxp@create-regular-buffer.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][412] ([i915#7984]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-mtlp-1/igt@i915_power@sanity.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-8/igt@i915_power@sanity.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][414] ([i915#15662]) -> [PASS][415] +1 other test pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][416] ([i915#15733] / [i915#5138]) -> [PASS][417] +1 other test pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-rkl: [INCOMPLETE][418] ([i915#14694] / [i915#15582]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_color@deep-color: - shard-rkl: [SKIP][420] ([i915#12655] / [i915#3555]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-3/igt@kms_color@deep-color.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_color@deep-color.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu-1: [FAIL][422] ([i915#13566]) -> [PASS][423] +1 other test pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][424] ([i915#13566]) -> [PASS][425] +3 other tests pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-suspend: - shard-rkl: [ABORT][426] ([i915#15132]) -> [PASS][427] +1 other test pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-1/igt@kms_cursor_crc@cursor-suspend.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-7/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-hdmi-a-3: - shard-dg1: [DMESG-WARN][428] ([i915#16685]) -> [PASS][429] +1 other test pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-dg1-13/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-hdmi-a-3.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-12/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-hdmi-a-3.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: [INCOMPLETE][430] ([i915#9878]) -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-4/igt@kms_fbcon_fbt@fbc-suspend.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-tglu: [ABORT][432] ([i915#16857] / [i915#16876]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-tglu-6/igt@kms_flip@flip-vs-blocking-wf-vblank.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-tglu-8/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [INCOMPLETE][434] ([i915#16276] / [i915#6113]) -> [PASS][435] +1 other test pass [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-4/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff: - shard-rkl: [SKIP][436] ([i915#15989]) -> [PASS][437] +7 other tests pass [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-render: - shard-glk: [SKIP][438] -> [PASS][439] +1 other test pass [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-glk2/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-render.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_hdr@static-swap: - shard-rkl: [SKIP][440] ([i915#16644] / [i915#3555] / [i915#8228]) -> [PASS][441] [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-2/igt@kms_hdr@static-swap.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-1/igt@kms_hdr@static-swap.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][442] ([i915#15073]) -> [PASS][443] [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-dg1: [SKIP][444] ([i915#15073]) -> [PASS][445] +1 other test pass [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@perf_pmu@busy-double-start@vcs1: - shard-mtlp: [FAIL][446] ([i915#4349]) -> [PASS][447] +2 other tests pass [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-mtlp-1/igt@perf_pmu@busy-double-start@vcs1.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html #### Warnings #### * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: [SKIP][448] ([i915#11078] / [i915#14544]) -> [SKIP][449] ([i915#11078]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-7/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_ccs@suspend-resume: - shard-rkl: [SKIP][450] ([i915#9323]) -> [SKIP][451] ([i915#14544] / [i915#9323]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-7/igt@gem_ccs@suspend-resume.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@gem_ccs@suspend-resume.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: [SKIP][452] ([i915#280]) -> [SKIP][453] ([i915#14544] / [i915#280]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-5/igt@gem_ctx_sseu@invalid-args.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: [SKIP][454] ([i915#14544] / [i915#280]) -> [SKIP][455] ([i915#280]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@parallel: - shard-rkl: [SKIP][456] ([i915#14544] / [i915#4525]) -> [SKIP][457] ([i915#4525]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@gem_exec_balancer@parallel.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-3/igt@gem_exec_balancer@parallel.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-rkl: [SKIP][458] ([i915#14544] / [i915#3281]) -> [SKIP][459] ([i915#3281]) +1 other test skip [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@gem_exec_reloc@basic-write-gtt-active.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_reloc@basic-write-gtt-noreloc: - shard-rkl: [SKIP][460] ([i915#3281]) -> [SKIP][461] ([i915#14544] / [i915#3281]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-7/igt@gem_exec_reloc@basic-write-gtt-noreloc.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@gem_exec_reloc@basic-write-gtt-noreloc.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: [SKIP][462] ([i915#14544] / [i915#4613]) -> [SKIP][463] ([i915#4613]) +1 other test skip [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: [SKIP][464] ([i915#14544] / [i915#8411]) -> [SKIP][465] ([i915#8411]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: [SKIP][466] ([i915#3282]) -> [SKIP][467] ([i915#14544] / [i915#3282]) +1 other test skip [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-rkl: [SKIP][468] ([i915#14544] / [i915#3297]) -> [SKIP][469] ([i915#3297]) +1 other test skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-overlap: - shard-rkl: [SKIP][470] ([i915#3297]) -> [SKIP][471] ([i915#14544] / [i915#3297]) [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-8/igt@gem_userptr_blits@unsync-overlap.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@bb-large: - shard-rkl: [SKIP][472] ([i915#2527]) -> [SKIP][473] ([i915#14544] / [i915#2527]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-8/igt@gen9_exec_parse@bb-large.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@unaligned-access: - shard-rkl: [SKIP][474] ([i915#14544] / [i915#2527]) -> [SKIP][475] ([i915#2527]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: [SKIP][476] ([i915#12454] / [i915#12712] / [i915#14544]) -> [SKIP][477] ([i915#12454] / [i915#12712]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: [SKIP][478] ([i915#5286]) -> [SKIP][479] ([i915#14544] / [i915#5286]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: [SKIP][480] ([i915#14544] / [i915#5286]) -> [SKIP][481] ([i915#5286]) +1 other test skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][482] ([i915#3638]) -> [SKIP][483] ([i915#14544] / [i915#3638]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-2/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc: - shard-rkl: [ABORT][484] ([i915#16852]) -> [SKIP][485] ([i915#14098] / [i915#6095]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: [SKIP][486] ([i915#12313] / [i915#14544]) -> [SKIP][487] ([i915#12313]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-rkl: [SKIP][488] ([i915#14098] / [i915#6095]) -> [SKIP][489] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][490] ([i915#14544] / [i915#6095]) -> [SKIP][491] ([i915#6095]) +3 other tests skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][492] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][493] ([i915#14098] / [i915#6095]) +4 other tests skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-rkl: [SKIP][494] ([i915#11151] / [i915#7828]) -> [SKIP][495] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-4/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-rkl: [SKIP][496] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][497] ([i915#11151] / [i915#7828]) +1 other test skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-single.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: [SKIP][498] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][499] ([i915#15330] / [i915#3116]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@mei-interface: - shard-rkl: [SKIP][500] ([i915#14544] / [i915#15865]) -> [SKIP][501] ([i915#15865]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_content_protection@mei-interface.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-7/igt@kms_content_protection@mei-interface.html - shard-dg1: [SKIP][502] ([i915#9433]) -> [SKIP][503] ([i915#15865]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-dg1-12/igt@kms_content_protection@mei-interface.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-18/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-rkl: [SKIP][504] ([i915#15865]) -> [SKIP][505] ([i915#14544] / [i915#15865]) +1 other test skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-8/igt@kms_content_protection@srm.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: [SKIP][506] ([i915#14544] / [i915#3555]) -> [SKIP][507] ([i915#3555]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x10.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: [SKIP][508] ([i915#9723]) -> [SKIP][509] ([i915#14544] / [i915#9723]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dp_link_training@uhbr-mst: - shard-rkl: [SKIP][510] ([i915#13748] / [i915#14544]) -> [SKIP][511] ([i915#13748]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dsc@dsc-basic-bigjoiner: - shard-rkl: [SKIP][512] ([i915#14544] / [i915#16361]) -> [SKIP][513] ([i915#16361]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_dsc@dsc-basic-bigjoiner.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_dsc@dsc-basic-bigjoiner.html * igt@kms_dsc@dsc-with-bpc-ultrajoiner: - shard-rkl: [SKIP][514] ([i915#16361]) -> [SKIP][515] ([i915#14544] / [i915#16361]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-2/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html * igt@kms_feature_discovery@psr1: - shard-rkl: [SKIP][516] ([i915#14544] / [i915#658]) -> [SKIP][517] ([i915#658]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_feature_discovery@psr1.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: [SKIP][518] ([i915#9934]) -> [SKIP][519] ([i915#14544] / [i915#9934]) +2 other tests skip [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-rkl: [SKIP][520] ([i915#14544] / [i915#9934]) -> [SKIP][521] ([i915#9934]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-rkl: [SKIP][522] ([i915#14544] / [i915#15643]) -> [SKIP][523] ([i915#15643]) +1 other test skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][524] ([i915#14544]) -> [SKIP][525] +25 other tests skip [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-rkl: [SKIP][526] ([i915#1825]) -> [SKIP][527] ([i915#14544] / [i915#1825]) +2 other tests skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][528] ([i915#14544] / [i915#1825]) -> [SKIP][529] ([i915#1825]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-dg1: [SKIP][530] -> [SKIP][531] ([i915#4423]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-rkl: [SKIP][532] ([i915#14544] / [i915#15102]) -> [SKIP][533] ([i915#15102]) +7 other tests skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-move: - shard-dg1: [SKIP][534] ([i915#15102]) -> [SKIP][535] ([i915#15102] / [i915#4423]) +1 other test skip [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-move.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: [SKIP][536] -> [SKIP][537] ([i915#14544]) +29 other tests skip [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: [SKIP][538] ([i915#9766]) -> [SKIP][539] ([i915#14544] / [i915#9766]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-dg1: [SKIP][540] ([i915#15102] / [i915#4423]) -> [SKIP][541] ([i915#15102]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][542] ([i915#15102]) -> [SKIP][543] ([i915#14544] / [i915#15102]) +9 other tests skip [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: [SKIP][544] ([i915#4423]) -> [SKIP][545] [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-dg1-12/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-indfb-draw-pwrite.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-15/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: [SKIP][546] ([i915#14544] / [i915#15460]) -> [SKIP][547] ([i915#15460]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-5/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: [SKIP][548] ([i915#14544] / [i915#15459]) -> [SKIP][549] ([i915#15459]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][550] ([i915#15815]) -> [SKIP][551] ([i915#14544] / [i915#15815]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier: - shard-rkl: [SKIP][552] ([i915#14544] / [i915#15709]) -> [SKIP][553] ([i915#15709]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: [SKIP][554] ([i915#15709]) -> [SKIP][555] ([i915#14544] / [i915#15709]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-3/igt@kms_plane@pixel-format-yf-tiled-modifier.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane_multiple@2x-tiling-y: - shard-rkl: [SKIP][556] ([i915#13958]) -> [SKIP][557] ([i915#13958] / [i915#14544]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-y.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_pm_dc@dc5-psr-suspend-resume: - shard-rkl: [SKIP][558] ([i915#14544] / [i915#16914]) -> [SKIP][559] ([i915#16914]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_pm_dc@dc5-psr-suspend-resume.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-7/igt@kms_pm_dc@dc5-psr-suspend-resume.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: [SKIP][560] ([i915#15948]) -> [SKIP][561] ([i915#14544] / [i915#15948]) [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-8/igt@kms_pm_dc@dc6-psr.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-rkl: [SKIP][562] ([i915#11520] / [i915#14544]) -> [SKIP][563] ([i915#11520]) +2 other tests skip [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][564] ([i915#11520]) -> [SKIP][565] ([i915#11520] / [i915#14544]) +1 other test skip [564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: [SKIP][566] ([i915#1072] / [i915#9732]) -> [SKIP][567] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip [566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-cursor-render: - shard-rkl: [SKIP][568] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][569] ([i915#1072] / [i915#9732]) +4 other tests skip [568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-6/igt@kms_psr@psr-cursor-render.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-2/igt@kms_psr@psr-cursor-render.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: [SKIP][570] ([i915#5289]) -> [SKIP][571] ([i915#14544] / [i915#5289]) [570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@perf_pmu@module-unload: - shard-dg1: [ABORT][572] ([i915#13029] / [i915#15778]) -> [ABORT][573] ([i915#15778]) [572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19069/shard-dg1-16/igt@perf_pmu@module-unload.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/shard-dg1-15/igt@perf_pmu@module-unload.html [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725 [i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16193 [i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276 [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386 [i915#16396]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16396 [i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420 [i915#16451]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16451 [i915#16466]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16466 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16490]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16490 [i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518 [i915#16599]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16599 [i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600 [i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644 [i915#16680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16680 [i915#16685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16685 [i915#16789]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16789 [i915#16837]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16837 [i915#16844]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16844 [i915#16852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16852 [i915#16857]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16857 [i915#16866]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16866 [i915#16867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16867 [i915#16876]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16876 [i915#16881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16881 [i915#16914]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16914 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9079 -> IGTPW_15771 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_19069: c53467440a5196138d2d6610e269a43b6b47bf6b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15771: 440d5dd616ef1adeff2bbed8aa8db8c0c7600ac8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_9079: 9079 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15771/index.html [-- Attachment #2: Type: text/html, Size: 191345 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v3] tests/intel/xe_ras: Add test for GPU health indicator 2026-09-02 2:58 [PATCH i-g-t v3] tests/intel/xe_ras: Add test for GPU health indicator Soham Purkait ` (3 preceding siblings ...) 2026-09-02 18:19 ` ✗ i915.CI.Full: " Patchwork @ 2026-09-04 6:24 ` Tauro, Riana 2026-09-04 6:34 ` Purkait, Soham 2026-09-08 5:21 ` Purkait, Soham 4 siblings, 2 replies; 9+ messages in thread From: Tauro, Riana @ 2026-09-04 6:24 UTC (permalink / raw) To: Soham Purkait, igt-dev, badal.nilawar, kamil.konieczny, sk.anirban, raag.jadav Cc: anshuman.gupta On 02-09-2026 08:28, Soham Purkait wrote: > Add a new Xe RAS test exercising the gpu_health sysfs attribute > exposed by the Xe driver on platforms that provide the system > controller. The attribute reports and allows updating the GPU > health state. > > The gpu-health subtest validates each valid state by writing it > and reading the value back, and checks that invalid writes are > rejected with -EINVAL, guarding against regressions in the > implementation. > > v1: > - Platform-conditional skip w/o fd leak. (Anirban) > - Restore via exit handler. (Anirban) > > v2: > - Remove dead-code and extra comments. (Anirban) > - Initialize exit handler under igt_subtest. (Anirban) > > v3: > - Move igt_info to the normal cleanup path when > restoring gpu_health. (Anirban) > > Signed-off-by: Soham Purkait <soham.purkait@intel.com> > Reviewed-by: Sk Anirban <sk.anirban@intel.com> > --- > tests/intel/xe_ras.c | 131 +++++++++++++++++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 2 files changed, 132 insertions(+) > create mode 100644 tests/intel/xe_ras.c > > diff --git a/tests/intel/xe_ras.c b/tests/intel/xe_ras.c > new file mode 100644 > index 000000000..f3b507ce0 > --- /dev/null > +++ b/tests/intel/xe_ras.c > @@ -0,0 +1,131 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright © 2026 Intel Corporation > + */ > + > +#include <errno.h> > +#include <string.h> > +#include <unistd.h> > + > +#include "igt.h" > +#include "igt_sysfs.h" > + > +/** > + * TEST: Test Xe RAS (Reliability, Availability, Serviceability) functionality > + * Category: Core > + * Mega feature: RAS > + * Sub-category: RAS tests > + * Functionality: ras > + * Test category: Functional tests > + * > + * SUBTEST: gpu-health > + * Description: Verify the gpu_health sysfs attribute accepts each valid > + * state (ok/warning/critical) and rejects invalid writes > + * with EINVAL. > + */ > + > +IGT_TEST_DESCRIPTION("Tests for Xe RAS"); > + > +#define GPU_HEALTH_ATTR "device/gpu_health" > + > +static const char * const gpu_health_states[] = { > + "ok", > + "warning", > + "critical", > +}; > + > +static struct { > + int sys_fd; > + char *orig_health; > +} gpu_health_ctx = { .sys_fd = -1 }; > + > +static void restore_gpu_health(int sig) > +{ > + if (gpu_health_ctx.sys_fd < 0 || !gpu_health_ctx.orig_health) > + return; > + > + igt_sysfs_set(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR, gpu_health_ctx.orig_health); > + close(gpu_health_ctx.sys_fd); > + gpu_health_ctx.sys_fd = -1; > + if (sig) > + return; > + igt_info("Restored initial gpu_health to '%s'\n", gpu_health_ctx.orig_health); > + free(gpu_health_ctx.orig_health); > + gpu_health_ctx.orig_health = NULL; > +} > + > +static bool valid_gpu_health(const char *s) > +{ > + int i; > + > + for (i = 0; i < ARRAY_SIZE(gpu_health_states); i++) > + if (!strcmp(s, gpu_health_states[i])) > + return true; > + > + return false; > +} > + > +static void test_gpu_health(int xe) > +{ > + char *health = NULL; > + int ret; > + int i; > + > + gpu_health_ctx.sys_fd = igt_sysfs_open(xe); > + igt_assert(gpu_health_ctx.sys_fd >= 0); > + > + if (!igt_sysfs_has_attr(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR)) { > + close(gpu_health_ctx.sys_fd); > + gpu_health_ctx.sys_fd = -1; > + igt_skip("gpu_health sysfs attribute not exposed by driver\n"); Won't exit handler be called here? Wouldn't it be better to skip on gpu health sysfs open. > + } > + > + gpu_health_ctx.orig_health = igt_sysfs_get(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR); > + igt_assert_f(gpu_health_ctx.orig_health, "Failed to read %s\n", GPU_HEALTH_ATTR); > + igt_info("Initial gpu_health: %s\n", gpu_health_ctx.orig_health); > + igt_assert_f(valid_gpu_health(gpu_health_ctx.orig_health), > + "Unexpected initial gpu_health value: '%s'\n", > + gpu_health_ctx.orig_health); > + > + ret = igt_sysfs_write(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR, "bogus", strlen("bogus")); > + igt_assert_f(ret == -EINVAL, > + "Write of invalid value to %s returned %d, expected -EINVAL\n", > + GPU_HEALTH_ATTR, ret); > + > + for (i = 0; i < ARRAY_SIZE(gpu_health_states); i++) { > + const char *state = gpu_health_states[i]; > + > + igt_info("Setting gpu_health to '%s'\n", state); > + > + igt_assert_f(igt_sysfs_set(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR, state), > + "Failed to write '%s' to %s\n", > + state, GPU_HEALTH_ATTR); > + > + health = igt_sysfs_get(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR); > + igt_assert(health); > + igt_assert_f(!strcmp(health, state), > + "gpu_health readback mismatch: wrote '%s', read '%s'\n", > + state, health); > + igt_info("Verified gpu_health state readback for '%s' successfully\n", > + state); > + free(health); > + } > + > + restore_gpu_health(0); > +} > + > +int igt_main() > +{ > + int xe; > + > + igt_fixture() > + xe = drm_open_driver(DRIVER_XE); > + > + igt_subtest("gpu-health") { > + igt_install_exit_handler(restore_gpu_health); > + test_gpu_health(xe); Wouldn't it be better to have dedicated subtests for each value instead of adding all testcases in a single function. Would be easier to find during analysis as well Thanks Riana > + } > + > + igt_fixture() > + drm_close_driver(xe); > +} > diff --git a/tests/meson.build b/tests/meson.build > index 1ac89bab7..3c2d4fdda 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -333,6 +333,7 @@ intel_xe_progs = [ > 'xe_prime_self_import', > 'xe_pxp', > 'xe_query', > + 'xe_ras', > 'xe_render_copy', > 'xe_vm', > 'xe_userptr_pressure', ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v3] tests/intel/xe_ras: Add test for GPU health indicator 2026-09-04 6:24 ` [PATCH i-g-t v3] tests/intel/xe_ras: Add test for GPU health indicator Tauro, Riana @ 2026-09-04 6:34 ` Purkait, Soham 2026-09-08 5:21 ` Purkait, Soham 1 sibling, 0 replies; 9+ messages in thread From: Purkait, Soham @ 2026-09-04 6:34 UTC (permalink / raw) To: Tauro, Riana, igt-dev, badal.nilawar, kamil.konieczny, sk.anirban, raag.jadav Cc: anshuman.gupta On 04-09-2026 11:54, Tauro, Riana wrote: > > On 02-09-2026 08:28, Soham Purkait wrote: >> Add a new Xe RAS test exercising the gpu_health sysfs attribute >> exposed by the Xe driver on platforms that provide the system >> controller. The attribute reports and allows updating the GPU >> health state. >> >> The gpu-health subtest validates each valid state by writing it >> and reading the value back, and checks that invalid writes are >> rejected with -EINVAL, guarding against regressions in the >> implementation. >> >> v1: >> - Platform-conditional skip w/o fd leak. (Anirban) >> - Restore via exit handler. (Anirban) >> >> v2: >> - Remove dead-code and extra comments. (Anirban) >> - Initialize exit handler under igt_subtest. (Anirban) >> >> v3: >> - Move igt_info to the normal cleanup path when >> restoring gpu_health. (Anirban) >> >> Signed-off-by: Soham Purkait <soham.purkait@intel.com> >> Reviewed-by: Sk Anirban <sk.anirban@intel.com> >> --- >> tests/intel/xe_ras.c | 131 +++++++++++++++++++++++++++++++++++++++++++ >> tests/meson.build | 1 + >> 2 files changed, 132 insertions(+) >> create mode 100644 tests/intel/xe_ras.c >> >> diff --git a/tests/intel/xe_ras.c b/tests/intel/xe_ras.c >> new file mode 100644 >> index 000000000..f3b507ce0 >> --- /dev/null >> +++ b/tests/intel/xe_ras.c >> @@ -0,0 +1,131 @@ >> +// SPDX-License-Identifier: MIT >> +/* >> + * Copyright © 2026 Intel Corporation >> + */ >> + >> +#include <errno.h> >> +#include <string.h> >> +#include <unistd.h> >> + >> +#include "igt.h" >> +#include "igt_sysfs.h" >> + >> +/** >> + * TEST: Test Xe RAS (Reliability, Availability, Serviceability) >> functionality >> + * Category: Core >> + * Mega feature: RAS >> + * Sub-category: RAS tests >> + * Functionality: ras >> + * Test category: Functional tests >> + * >> + * SUBTEST: gpu-health >> + * Description: Verify the gpu_health sysfs attribute accepts each >> valid >> + * state (ok/warning/critical) and rejects invalid writes >> + * with EINVAL. >> + */ >> + >> +IGT_TEST_DESCRIPTION("Tests for Xe RAS"); >> + >> +#define GPU_HEALTH_ATTR "device/gpu_health" >> + >> +static const char * const gpu_health_states[] = { >> + "ok", >> + "warning", >> + "critical", >> +}; >> + >> +static struct { >> + int sys_fd; >> + char *orig_health; >> +} gpu_health_ctx = { .sys_fd = -1 }; >> + >> +static void restore_gpu_health(int sig) >> +{ >> + if (gpu_health_ctx.sys_fd < 0 || !gpu_health_ctx.orig_health) >> + return; >> + >> + igt_sysfs_set(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR, >> gpu_health_ctx.orig_health); >> + close(gpu_health_ctx.sys_fd); >> + gpu_health_ctx.sys_fd = -1; >> + if (sig) >> + return; >> + igt_info("Restored initial gpu_health to '%s'\n", >> gpu_health_ctx.orig_health); >> + free(gpu_health_ctx.orig_health); >> + gpu_health_ctx.orig_health = NULL; >> +} >> + >> +static bool valid_gpu_health(const char *s) >> +{ >> + int i; >> + >> + for (i = 0; i < ARRAY_SIZE(gpu_health_states); i++) >> + if (!strcmp(s, gpu_health_states[i])) >> + return true; >> + >> + return false; >> +} >> + >> +static void test_gpu_health(int xe) >> +{ >> + char *health = NULL; >> + int ret; >> + int i; >> + >> + gpu_health_ctx.sys_fd = igt_sysfs_open(xe); >> + igt_assert(gpu_health_ctx.sys_fd >= 0); >> + >> + if (!igt_sysfs_has_attr(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR)) { >> + close(gpu_health_ctx.sys_fd); >> + gpu_health_ctx.sys_fd = -1; >> + igt_skip("gpu_health sysfs attribute not exposed by driver\n"); > > Won't exit handler be called here? > Wouldn't it be better to skip on gpu health sysfs open. > >> + } >> + >> + gpu_health_ctx.orig_health = >> igt_sysfs_get(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR); >> + igt_assert_f(gpu_health_ctx.orig_health, "Failed to read %s\n", >> GPU_HEALTH_ATTR); >> + igt_info("Initial gpu_health: %s\n", gpu_health_ctx.orig_health); >> + igt_assert_f(valid_gpu_health(gpu_health_ctx.orig_health), >> + "Unexpected initial gpu_health value: '%s'\n", >> + gpu_health_ctx.orig_health); >> + >> + ret = igt_sysfs_write(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR, >> "bogus", strlen("bogus")); >> + igt_assert_f(ret == -EINVAL, >> + "Write of invalid value to %s returned %d, expected >> -EINVAL\n", >> + GPU_HEALTH_ATTR, ret); >> + >> + for (i = 0; i < ARRAY_SIZE(gpu_health_states); i++) { >> + const char *state = gpu_health_states[i]; >> + >> + igt_info("Setting gpu_health to '%s'\n", state); >> + >> + igt_assert_f(igt_sysfs_set(gpu_health_ctx.sys_fd, >> GPU_HEALTH_ATTR, state), >> + "Failed to write '%s' to %s\n", >> + state, GPU_HEALTH_ATTR); >> + >> + health = igt_sysfs_get(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR); >> + igt_assert(health); >> + igt_assert_f(!strcmp(health, state), >> + "gpu_health readback mismatch: wrote '%s', read >> '%s'\n", >> + state, health); >> + igt_info("Verified gpu_health state readback for '%s' >> successfully\n", >> + state); >> + free(health); >> + } >> + >> + restore_gpu_health(0); >> +} >> + >> +int igt_main() >> +{ >> + int xe; >> + >> + igt_fixture() >> + xe = drm_open_driver(DRIVER_XE); >> + >> + igt_subtest("gpu-health") { >> + igt_install_exit_handler(restore_gpu_health); >> + test_gpu_health(xe); > > Wouldn't it be better to have dedicated subtests for each value > instead of > adding all testcases in a single function. Yes that's a good point. better to implement like that. thanks, Soham > > Would be easier to find during analysis as well > > Thanks > Riana > >> + } >> + >> + igt_fixture() >> + drm_close_driver(xe); >> +} >> diff --git a/tests/meson.build b/tests/meson.build >> index 1ac89bab7..3c2d4fdda 100644 >> --- a/tests/meson.build >> +++ b/tests/meson.build >> @@ -333,6 +333,7 @@ intel_xe_progs = [ >> 'xe_prime_self_import', >> 'xe_pxp', >> 'xe_query', >> + 'xe_ras', >> 'xe_render_copy', >> 'xe_vm', >> 'xe_userptr_pressure', ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v3] tests/intel/xe_ras: Add test for GPU health indicator 2026-09-04 6:24 ` [PATCH i-g-t v3] tests/intel/xe_ras: Add test for GPU health indicator Tauro, Riana 2026-09-04 6:34 ` Purkait, Soham @ 2026-09-08 5:21 ` Purkait, Soham 2026-09-11 5:33 ` Tauro, Riana 1 sibling, 1 reply; 9+ messages in thread From: Purkait, Soham @ 2026-09-08 5:21 UTC (permalink / raw) To: Tauro, Riana, igt-dev, badal.nilawar, kamil.konieczny, sk.anirban, raag.jadav Cc: anshuman.gupta On 04-09-2026 11:54, Tauro, Riana wrote: > > On 02-09-2026 08:28, Soham Purkait wrote: >> Add a new Xe RAS test exercising the gpu_health sysfs attribute >> exposed by the Xe driver on platforms that provide the system >> controller. The attribute reports and allows updating the GPU >> health state. >> >> The gpu-health subtest validates each valid state by writing it >> and reading the value back, and checks that invalid writes are >> rejected with -EINVAL, guarding against regressions in the >> implementation. >> >> v1: >> - Platform-conditional skip w/o fd leak. (Anirban) >> - Restore via exit handler. (Anirban) >> >> v2: >> - Remove dead-code and extra comments. (Anirban) >> - Initialize exit handler under igt_subtest. (Anirban) >> >> v3: >> - Move igt_info to the normal cleanup path when >> restoring gpu_health. (Anirban) >> >> Signed-off-by: Soham Purkait <soham.purkait@intel.com> >> Reviewed-by: Sk Anirban <sk.anirban@intel.com> >> --- >> tests/intel/xe_ras.c | 131 +++++++++++++++++++++++++++++++++++++++++++ >> tests/meson.build | 1 + >> 2 files changed, 132 insertions(+) >> create mode 100644 tests/intel/xe_ras.c >> >> diff --git a/tests/intel/xe_ras.c b/tests/intel/xe_ras.c >> new file mode 100644 >> index 000000000..f3b507ce0 >> --- /dev/null >> +++ b/tests/intel/xe_ras.c >> @@ -0,0 +1,131 @@ >> +// SPDX-License-Identifier: MIT >> +/* >> + * Copyright © 2026 Intel Corporation >> + */ >> + >> +#include <errno.h> >> +#include <string.h> >> +#include <unistd.h> >> + >> +#include "igt.h" >> +#include "igt_sysfs.h" >> + >> +/** >> + * TEST: Test Xe RAS (Reliability, Availability, Serviceability) >> functionality >> + * Category: Core >> + * Mega feature: RAS >> + * Sub-category: RAS tests >> + * Functionality: ras >> + * Test category: Functional tests >> + * >> + * SUBTEST: gpu-health >> + * Description: Verify the gpu_health sysfs attribute accepts each >> valid >> + * state (ok/warning/critical) and rejects invalid writes >> + * with EINVAL. >> + */ >> + >> +IGT_TEST_DESCRIPTION("Tests for Xe RAS"); >> + >> +#define GPU_HEALTH_ATTR "device/gpu_health" >> + >> +static const char * const gpu_health_states[] = { >> + "ok", >> + "warning", >> + "critical", >> +}; >> + >> +static struct { >> + int sys_fd; >> + char *orig_health; >> +} gpu_health_ctx = { .sys_fd = -1 }; >> + >> +static void restore_gpu_health(int sig) >> +{ >> + if (gpu_health_ctx.sys_fd < 0 || !gpu_health_ctx.orig_health) >> + return; >> + >> + igt_sysfs_set(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR, >> gpu_health_ctx.orig_health); >> + close(gpu_health_ctx.sys_fd); >> + gpu_health_ctx.sys_fd = -1; >> + if (sig) >> + return; >> + igt_info("Restored initial gpu_health to '%s'\n", >> gpu_health_ctx.orig_health); >> + free(gpu_health_ctx.orig_health); >> + gpu_health_ctx.orig_health = NULL; >> +} >> + >> +static bool valid_gpu_health(const char *s) >> +{ >> + int i; >> + >> + for (i = 0; i < ARRAY_SIZE(gpu_health_states); i++) >> + if (!strcmp(s, gpu_health_states[i])) >> + return true; >> + >> + return false; >> +} >> + >> +static void test_gpu_health(int xe) >> +{ >> + char *health = NULL; >> + int ret; >> + int i; >> + >> + gpu_health_ctx.sys_fd = igt_sysfs_open(xe); >> + igt_assert(gpu_health_ctx.sys_fd >= 0); >> + >> + if (!igt_sysfs_has_attr(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR)) { >> + close(gpu_health_ctx.sys_fd); >> + gpu_health_ctx.sys_fd = -1; >> + igt_skip("gpu_health sysfs attribute not exposed by driver\n"); > > Won't exit handler be called here? No its the device sysfs for which gpu-health exit handler does not run. > Wouldn't it be better to skip on gpu health sysfs open. Apart from this test technically no one is supposed to open gpu health sysfs. If so, should this fail ? skip may not be a right option. > >> + } >> + >> + gpu_health_ctx.orig_health = >> igt_sysfs_get(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR); >> + igt_assert_f(gpu_health_ctx.orig_health, "Failed to read %s\n", >> GPU_HEALTH_ATTR); >> + igt_info("Initial gpu_health: %s\n", gpu_health_ctx.orig_health); >> + igt_assert_f(valid_gpu_health(gpu_health_ctx.orig_health), >> + "Unexpected initial gpu_health value: '%s'\n", >> + gpu_health_ctx.orig_health); >> + >> + ret = igt_sysfs_write(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR, >> "bogus", strlen("bogus")); >> + igt_assert_f(ret == -EINVAL, >> + "Write of invalid value to %s returned %d, expected >> -EINVAL\n", >> + GPU_HEALTH_ATTR, ret); >> + >> + for (i = 0; i < ARRAY_SIZE(gpu_health_states); i++) { >> + const char *state = gpu_health_states[i]; >> + >> + igt_info("Setting gpu_health to '%s'\n", state); >> + >> + igt_assert_f(igt_sysfs_set(gpu_health_ctx.sys_fd, >> GPU_HEALTH_ATTR, state), >> + "Failed to write '%s' to %s\n", >> + state, GPU_HEALTH_ATTR); >> + >> + health = igt_sysfs_get(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR); >> + igt_assert(health); >> + igt_assert_f(!strcmp(health, state), >> + "gpu_health readback mismatch: wrote '%s', read >> '%s'\n", >> + state, health); >> + igt_info("Verified gpu_health state readback for '%s' >> successfully\n", >> + state); >> + free(health); >> + } >> + >> + restore_gpu_health(0); >> +} >> + >> +int igt_main() >> +{ >> + int xe; >> + >> + igt_fixture() >> + xe = drm_open_driver(DRIVER_XE); >> + >> + igt_subtest("gpu-health") { >> + igt_install_exit_handler(restore_gpu_health); >> + test_gpu_health(xe); > > Wouldn't it be better to have dedicated subtests for each value > instead of > adding all testcases in a single function. What about dynamic subtest for all these 4 cases under gpu-health subtest? Thanks, Soham > > Would be easier to find during analysis as well > > Thanks > Riana > >> + } >> + >> + igt_fixture() >> + drm_close_driver(xe); >> +} >> diff --git a/tests/meson.build b/tests/meson.build >> index 1ac89bab7..3c2d4fdda 100644 >> --- a/tests/meson.build >> +++ b/tests/meson.build >> @@ -333,6 +333,7 @@ intel_xe_progs = [ >> 'xe_prime_self_import', >> 'xe_pxp', >> 'xe_query', >> + 'xe_ras', >> 'xe_render_copy', >> 'xe_vm', >> 'xe_userptr_pressure', ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v3] tests/intel/xe_ras: Add test for GPU health indicator 2026-09-08 5:21 ` Purkait, Soham @ 2026-09-11 5:33 ` Tauro, Riana 0 siblings, 0 replies; 9+ messages in thread From: Tauro, Riana @ 2026-09-11 5:33 UTC (permalink / raw) To: Purkait, Soham, igt-dev, badal.nilawar, kamil.konieczny, sk.anirban, raag.jadav Cc: anshuman.gupta On 08-09-2026 10:51, Purkait, Soham wrote: > > On 04-09-2026 11:54, Tauro, Riana wrote: >> >> On 02-09-2026 08:28, Soham Purkait wrote: >>> Add a new Xe RAS test exercising the gpu_health sysfs attribute >>> exposed by the Xe driver on platforms that provide the system >>> controller. The attribute reports and allows updating the GPU >>> health state. >>> >>> The gpu-health subtest validates each valid state by writing it >>> and reading the value back, and checks that invalid writes are >>> rejected with -EINVAL, guarding against regressions in the >>> implementation. >>> >>> v1: >>> - Platform-conditional skip w/o fd leak. (Anirban) >>> - Restore via exit handler. (Anirban) >>> >>> v2: >>> - Remove dead-code and extra comments. (Anirban) >>> - Initialize exit handler under igt_subtest. (Anirban) >>> >>> v3: >>> - Move igt_info to the normal cleanup path when >>> restoring gpu_health. (Anirban) >>> >>> Signed-off-by: Soham Purkait <soham.purkait@intel.com> >>> Reviewed-by: Sk Anirban <sk.anirban@intel.com> >>> --- >>> tests/intel/xe_ras.c | 131 >>> +++++++++++++++++++++++++++++++++++++++++++ >>> tests/meson.build | 1 + >>> 2 files changed, 132 insertions(+) >>> create mode 100644 tests/intel/xe_ras.c >>> >>> diff --git a/tests/intel/xe_ras.c b/tests/intel/xe_ras.c >>> new file mode 100644 >>> index 000000000..f3b507ce0 >>> --- /dev/null >>> +++ b/tests/intel/xe_ras.c >>> @@ -0,0 +1,131 @@ >>> +// SPDX-License-Identifier: MIT >>> +/* >>> + * Copyright © 2026 Intel Corporation >>> + */ >>> + >>> +#include <errno.h> >>> +#include <string.h> >>> +#include <unistd.h> >>> + >>> +#include "igt.h" >>> +#include "igt_sysfs.h" >>> + >>> +/** >>> + * TEST: Test Xe RAS (Reliability, Availability, Serviceability) >>> functionality >>> + * Category: Core >>> + * Mega feature: RAS >>> + * Sub-category: RAS tests >>> + * Functionality: ras >>> + * Test category: Functional tests >>> + * >>> + * SUBTEST: gpu-health >>> + * Description: Verify the gpu_health sysfs attribute accepts each >>> valid >>> + * state (ok/warning/critical) and rejects invalid writes >>> + * with EINVAL. >>> + */ >>> + >>> +IGT_TEST_DESCRIPTION("Tests for Xe RAS"); >>> + >>> +#define GPU_HEALTH_ATTR "device/gpu_health" >>> + >>> +static const char * const gpu_health_states[] = { >>> + "ok", >>> + "warning", >>> + "critical", >>> +}; >>> + >>> +static struct { >>> + int sys_fd; >>> + char *orig_health; >>> +} gpu_health_ctx = { .sys_fd = -1 }; >>> + >>> +static void restore_gpu_health(int sig) >>> +{ >>> + if (gpu_health_ctx.sys_fd < 0 || !gpu_health_ctx.orig_health) >>> + return; >>> + >>> + igt_sysfs_set(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR, >>> gpu_health_ctx.orig_health); >>> + close(gpu_health_ctx.sys_fd); >>> + gpu_health_ctx.sys_fd = -1; >>> + if (sig) >>> + return; >>> + igt_info("Restored initial gpu_health to '%s'\n", >>> gpu_health_ctx.orig_health); >>> + free(gpu_health_ctx.orig_health); >>> + gpu_health_ctx.orig_health = NULL; >>> +} >>> + >>> +static bool valid_gpu_health(const char *s) >>> +{ >>> + int i; >>> + >>> + for (i = 0; i < ARRAY_SIZE(gpu_health_states); i++) >>> + if (!strcmp(s, gpu_health_states[i])) >>> + return true; >>> + >>> + return false; >>> +} >>> + >>> +static void test_gpu_health(int xe) >>> +{ >>> + char *health = NULL; >>> + int ret; >>> + int i; >>> + >>> + gpu_health_ctx.sys_fd = igt_sysfs_open(xe); >>> + igt_assert(gpu_health_ctx.sys_fd >= 0); >>> + if (!igt_sysfs_has_attr(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR)) { >>> + close(gpu_health_ctx.sys_fd); >>> + gpu_health_ctx.sys_fd = -1; >>> + igt_skip("gpu_health sysfs attribute not exposed by >>> driver\n"); >> >> Won't exit handler be called here? > No its the device sysfs for which gpu-health exit handler does not run. I meant assert here. >> Wouldn't it be better to skip on gpu health sysfs open. > > Apart from this test technically no one is supposed to open gpu health > sysfs. If so, should this fail ? skip may not be a right option. How is skip related to other tests using it? use igt_skip_on if gpu health is not available. This will prevent failures on non-supported platforms. > >> >>> + } >>> + >>> + gpu_health_ctx.orig_health = >>> igt_sysfs_get(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR); >>> + igt_assert_f(gpu_health_ctx.orig_health, "Failed to read %s\n", >>> GPU_HEALTH_ATTR); >>> + igt_info("Initial gpu_health: %s\n", gpu_health_ctx.orig_health); >>> + igt_assert_f(valid_gpu_health(gpu_health_ctx.orig_health), >>> + "Unexpected initial gpu_health value: '%s'\n", >>> + gpu_health_ctx.orig_health); >>> + >>> + ret = igt_sysfs_write(gpu_health_ctx.sys_fd, GPU_HEALTH_ATTR, >>> "bogus", strlen("bogus")); >>> + igt_assert_f(ret == -EINVAL, >>> + "Write of invalid value to %s returned %d, expected >>> -EINVAL\n", >>> + GPU_HEALTH_ATTR, ret); >>> + >>> + for (i = 0; i < ARRAY_SIZE(gpu_health_states); i++) { >>> + const char *state = gpu_health_states[i]; >>> + >>> + igt_info("Setting gpu_health to '%s'\n", state); >>> + >>> + igt_assert_f(igt_sysfs_set(gpu_health_ctx.sys_fd, >>> GPU_HEALTH_ATTR, state), >>> + "Failed to write '%s' to %s\n", >>> + state, GPU_HEALTH_ATTR); >>> + >>> + health = igt_sysfs_get(gpu_health_ctx.sys_fd, >>> GPU_HEALTH_ATTR); >>> + igt_assert(health); >>> + igt_assert_f(!strcmp(health, state), >>> + "gpu_health readback mismatch: wrote '%s', read >>> '%s'\n", >>> + state, health); >>> + igt_info("Verified gpu_health state readback for '%s' >>> successfully\n", >>> + state); >>> + free(health); >>> + } >>> + >>> + restore_gpu_health(0); >>> +} >>> + >>> +int igt_main() >>> +{ >>> + int xe; >>> + >>> + igt_fixture() >>> + xe = drm_open_driver(DRIVER_XE); >>> + >>> + igt_subtest("gpu-health") { >>> + igt_install_exit_handler(restore_gpu_health); >>> + test_gpu_health(xe); >> >> Wouldn't it be better to have dedicated subtests for each value >> instead of >> adding all testcases in a single function. > > What about dynamic subtest for all these 4 cases under gpu-health > subtest? Sure. It should be per value. Thanks Riana > > Thanks, > Soham >> >> Would be easier to find during analysis as well >> >> Thanks >> Riana >> >>> + } >>> + >>> + igt_fixture() >>> + drm_close_driver(xe); >>> +} >>> diff --git a/tests/meson.build b/tests/meson.build >>> index 1ac89bab7..3c2d4fdda 100644 >>> --- a/tests/meson.build >>> +++ b/tests/meson.build >>> @@ -333,6 +333,7 @@ intel_xe_progs = [ >>> 'xe_prime_self_import', >>> 'xe_pxp', >>> 'xe_query', >>> + 'xe_ras', >>> 'xe_render_copy', >>> 'xe_vm', >>> 'xe_userptr_pressure', ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-09-11 5:41 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-09-02 2:58 [PATCH i-g-t v3] tests/intel/xe_ras: Add test for GPU health indicator Soham Purkait 2026-09-02 3:46 ` ✓ i915.CI.BAT: success for tests/intel/xe_ras: Add test for GPU health indicator (rev4) Patchwork 2026-09-02 7:29 ` ✓ Xe.CI.BAT: " Patchwork 2026-09-02 14:17 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-09-02 18:19 ` ✗ i915.CI.Full: " Patchwork 2026-09-04 6:24 ` [PATCH i-g-t v3] tests/intel/xe_ras: Add test for GPU health indicator Tauro, Riana 2026-09-04 6:34 ` Purkait, Soham 2026-09-08 5:21 ` Purkait, Soham 2026-09-11 5:33 ` Tauro, Riana
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox