* [PATCH] tests/intel/xe_fault_injection: Close drm fd before unbind
@ 2026-01-09 22:40 Shuicheng Lin
2026-01-10 0:33 ` ✓ Xe.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Shuicheng Lin @ 2026-01-09 22:40 UTC (permalink / raw)
To: igt-dev; +Cc: Shuicheng Lin
Close the sysfs and DRM device fd before unbinding the xe driver. Otherwise the
open fd holds a reference, and the subsequent bind can come up with different
card/render minor numbers (e.g. renderD128 -> renderD129, card0 -> card1).
Also drop the unused DRM fd parameter from inject_fault_probe() and
probe_fail_guc() now that these paths don't require it.
Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
---
tests/intel/xe_fault_injection.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
index f3bfc4b40..76d1c6fa3 100644
--- a/tests/intel/xe_fault_injection.c
+++ b/tests/intel/xe_fault_injection.c
@@ -260,7 +260,7 @@ static void ignore_fail_dump_in_dmesg(const char function_name[], bool enable)
* @xe_wopcm_init: xe_wopcm_init
*/
static int
-inject_fault_probe(int fd, const char pci_slot[], const char function_name[])
+inject_fault_probe(const char pci_slot[], const char function_name[])
{
int err = 0;
igt_info("Injecting error \"%s\" (%d) in function \"%s\"\n",
@@ -289,7 +289,7 @@ inject_fault_probe(int fd, const char pci_slot[], const char function_name[])
* @xe_guc_mmio_send_recv: Inject an error when calling xe_guc_mmio_send_recv
* @xe_guc_ct_send_recv: Inject an error when calling xe_guc_ct_send_recv
*/
-static void probe_fail_guc(int fd, const char pci_slot[], const char function_name[],
+static void probe_fail_guc(const char pci_slot[], const char function_name[],
struct fault_injection_params *fault_params)
{
int iter_start = 0, iter_end = 0, iter = 0;
@@ -308,7 +308,7 @@ static void probe_fail_guc(int fd, const char pci_slot[], const char function_na
fault_params->space = i;
fault_params->times = MAX_INJECTIONS_PER_ITER;
setup_injection_fault(fault_params);
- inject_fault_probe(fd, pci_slot, function_name);
+ inject_fault_probe(pci_slot, function_name);
igt_kmod_unbind("xe", pci_slot);
/*
@@ -662,6 +662,8 @@ int igt_main_args("I:", NULL, help_str, opt_handler, NULL)
oa_add_config_fail(fd, sysfs, devid, pci_slot, s->name);
igt_fixture() {
+ close(sysfs);
+ drm_close_driver(fd);
igt_kmod_unbind("xe", pci_slot);
}
@@ -670,7 +672,7 @@ int igt_main_args("I:", NULL, help_str, opt_handler, NULL)
bool should_pass = s->pf_only && is_vf_device;
int err;
- err = inject_fault_probe(fd, pci_slot, s->name);
+ err = inject_fault_probe(pci_slot, s->name);
igt_assert_eq(should_pass ? 0 : INJECT_ERRNO, err);
igt_kmod_unbind("xe", pci_slot);
@@ -680,12 +682,10 @@ int igt_main_args("I:", NULL, help_str, opt_handler, NULL)
igt_subtest_f("probe-fail-guc-%s", s->name) {
memcpy(&fault_params, &default_fault_params,
sizeof(struct fault_injection_params));
- probe_fail_guc(fd, pci_slot, s->name, &fault_params);
+ probe_fail_guc(pci_slot, s->name, &fault_params);
}
igt_fixture() {
- close(sysfs);
- drm_close_driver(fd);
injection_list_clear();
igt_kmod_bind("xe", pci_slot);
}
--
2.50.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_fault_injection: Close drm fd before unbind
2026-01-09 22:40 [PATCH] tests/intel/xe_fault_injection: Close drm fd before unbind Shuicheng Lin
@ 2026-01-10 0:33 ` Patchwork
2026-01-10 0:37 ` ✓ i915.CI.BAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-01-10 0:33 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1583 bytes --]
== Series Details ==
Series: tests/intel/xe_fault_injection: Close drm fd before unbind
URL : https://patchwork.freedesktop.org/series/159903/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8694_BAT -> XEIGTPW_14320_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14320_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [PASS][1] -> [TIMEOUT][2] ([Intel XE#6506])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
Build changes
-------------
* IGT: IGT_8694 -> IGTPW_14320
* Linux: xe-4360-e956f80845230486226415d5176b9bc5f792aad4 -> xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80
IGTPW_14320: 07b872470f740bcb96e52b0d65008842aa567bf8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8694: 8694
xe-4360-e956f80845230486226415d5176b9bc5f792aad4: e956f80845230486226415d5176b9bc5f792aad4
xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80: 070b98e5f13d7b8c95b1f348629cdef8b7aafa80
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/index.html
[-- Attachment #2: Type: text/html, Size: 2159 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_fault_injection: Close drm fd before unbind
2026-01-09 22:40 [PATCH] tests/intel/xe_fault_injection: Close drm fd before unbind Shuicheng Lin
2026-01-10 0:33 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-01-10 0:37 ` Patchwork
2026-01-10 3:18 ` ✗ i915.CI.Full: failure " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-01-10 0:37 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1163 bytes --]
== Series Details ==
Series: tests/intel/xe_fault_injection: Close drm fd before unbind
URL : https://patchwork.freedesktop.org/series/159903/
State : success
== Summary ==
CI Bug Log - changes from IGT_8694 -> IGTPW_14320
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/index.html
Participating hosts (43 -> 40)
------------------------------
Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6
Changes
-------
No changes found
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8694 -> IGTPW_14320
* Linux: CI_DRM_17797 -> CI_DRM_17798
CI-20190529: 20190529
CI_DRM_17797: e956f80845230486226415d5176b9bc5f792aad4 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_17798: 070b98e5f13d7b8c95b1f348629cdef8b7aafa80 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14320: 07b872470f740bcb96e52b0d65008842aa567bf8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8694: 8694
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/index.html
[-- Attachment #2: Type: text/html, Size: 1743 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/xe_fault_injection: Close drm fd before unbind
2026-01-09 22:40 [PATCH] tests/intel/xe_fault_injection: Close drm fd before unbind Shuicheng Lin
2026-01-10 0:33 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-01-10 0:37 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-01-10 3:18 ` Patchwork
2026-02-17 16:43 ` Lin, Shuicheng
2026-01-10 5:31 ` ✓ Xe.CI.Full: success " Patchwork
2026-01-21 2:43 ` [PATCH] " Lin, Shuicheng
4 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2026-01-10 3:18 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 153323 bytes --]
== Series Details ==
Series: tests/intel/xe_fault_injection: Close drm fd before unbind
URL : https://patchwork.freedesktop.org/series/159903/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_17798_full -> IGTPW_14320_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14320_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14320_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_14320/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14320_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live:
- shard-dg1: [PASS][1] -> [DMESG-FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg1-18/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-18/igt@i915_selftest@live.html
* igt@perf_pmu@most-busy-idle-check-all:
- shard-dg2: NOTRUN -> [FAIL][3] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-5/igt@perf_pmu@most-busy-idle-check-all.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-dg1: NOTRUN -> [FAIL][4] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-16/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
- shard-mtlp: [PASS][5] -> [FAIL][6] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
New tests
---------
New tests have been introduced between CI_DRM_17798_full and IGTPW_14320_full:
### New IGT tests (15) ###
* igt@kms_draw_crc@draw-method-blt@xbgr16161616f-4tiled:
- Statuses : 2 pass(s)
- Exec time: [0.12, 0.15] s
* igt@kms_draw_crc@draw-method-blt@xbgr16161616f-untiled:
- Statuses : 6 pass(s)
- Exec time: [0.17, 0.32] s
* igt@kms_draw_crc@draw-method-blt@xbgr16161616f-xtiled:
- Statuses : 6 pass(s)
- Exec time: [0.08, 0.17] s
* igt@kms_draw_crc@draw-method-mmap-cpu@xbgr16161616f-4tiled:
- Statuses : 2 pass(s)
- Exec time: [0.14, 0.15] s
* igt@kms_draw_crc@draw-method-mmap-cpu@xbgr16161616f-untiled:
- Statuses : 7 pass(s)
- Exec time: [0.15, 0.33] s
* igt@kms_draw_crc@draw-method-mmap-cpu@xbgr16161616f-xtiled:
- Statuses : 7 pass(s)
- Exec time: [0.08, 0.21] s
* igt@kms_draw_crc@draw-method-mmap-wc@xbgr16161616f-4tiled:
- Statuses : 1 pass(s)
- Exec time: [0.19] s
* igt@kms_draw_crc@draw-method-mmap-wc@xbgr16161616f-untiled:
- Statuses : 5 pass(s)
- Exec time: [0.14, 0.32] s
* igt@kms_draw_crc@draw-method-mmap-wc@xbgr16161616f-xtiled:
- Statuses : 5 pass(s)
- Exec time: [0.07, 0.20] s
* igt@kms_draw_crc@draw-method-pwrite@xbgr16161616f-4tiled:
- Statuses : 2 pass(s)
- Exec time: [0.61, 2.87] s
* igt@kms_draw_crc@draw-method-pwrite@xbgr16161616f-untiled:
- Statuses : 7 pass(s)
- Exec time: [0.15, 0.75] s
* igt@kms_draw_crc@draw-method-pwrite@xbgr16161616f-xtiled:
- Statuses : 7 pass(s)
- Exec time: [0.12, 3.17] s
* igt@kms_draw_crc@draw-method-render@xbgr16161616f-4tiled:
- Statuses : 2 pass(s)
- Exec time: [0.13, 0.17] s
* igt@kms_draw_crc@draw-method-render@xbgr16161616f-untiled:
- Statuses : 6 pass(s)
- Exec time: [0.17, 0.38] s
* igt@kms_draw_crc@draw-method-render@xbgr16161616f-xtiled:
- Statuses : 6 pass(s)
- Exec time: [0.08, 0.19] s
Known issues
------------
Here are the changes found in IGTPW_14320_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-17/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-7/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8411])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-11/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@crc32:
- shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#6230])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#8411]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-2/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#11078])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-7/igt@device_reset@cold-reset-bound.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-7/igt@gem_ccs@ctrl-surf-copy.html
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-3/igt@gem_ccs@ctrl-surf-copy.html
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-18/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#7697])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-8/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [FAIL][18] ([i915#15454])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][19] ([i915#6335]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#6335]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-4/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#14544] / [i915#6335]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][24] ([i915#1099]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-snb7/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#280]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu-1: NOTRUN -> [SKIP][26] ([i915#280]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-5/igt@gem_exec_balancer@bonded-false-hang.html
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#4812])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-18/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#4525])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-tglu: NOTRUN -> [SKIP][31] ([i915#4525]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-8/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture:
- shard-mtlp: NOTRUN -> [FAIL][32] ([i915#11965]) +1 other test fail
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-2/igt@gem_exec_capture@capture.html
* igt@gem_exec_capture@capture-invisible:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#6334]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-6/igt@gem_exec_capture@capture-invisible.html
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#6334]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@gem_exec_capture@capture-invisible.html
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#6334]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-12/igt@gem_exec_capture@capture-invisible.html
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#6334]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-7/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#6334]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-2/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu-1: NOTRUN -> [SKIP][38] ([i915#6344])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][39] ([i915#11965]) +4 other tests fail
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-5/igt@gem_exec_capture@capture@vecs0-lmem0.html
- shard-dg1: NOTRUN -> [FAIL][40] ([i915#11965]) +2 other tests fail
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-18/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-4/igt@gem_exec_flush@basic-uc-ro-default.html
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_reloc@basic-concurrent16:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-7/igt@gem_exec_reloc@basic-concurrent16.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +4 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-4/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-wc-active:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#14544] / [i915#3281]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-active.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4860]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-4/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4860]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-19/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4860]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613] / [i915#7582])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-8/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-6/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4565]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#12193]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][57] ([i915#4613]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#4613])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4077]) +11 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_mmap_wc@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-7/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4083]) +5 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-3/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-6/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_pread@bench:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@gem_pread@bench.html
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#3282]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-14/igt@gem_pread@bench.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][66] ([i915#2658])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-2/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4270]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-16/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][69] ([i915#13398])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-4/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_readwrite@read-bad-handle:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3282]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-8/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@x-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#8428]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-4/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#5190] / [i915#8428]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-4/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4077]) +6 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-8/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4077]) +11 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-17/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][76] ([i915#3323])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglu: NOTRUN -> [SKIP][77] ([i915#3297])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-8/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4880]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4880])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3297]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-cycles.html
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-14/igt@gem_userptr_blits@unsync-unmap-cycles.html
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3297])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-5/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_vm_create@invalid-create:
- shard-snb: NOTRUN -> [SKIP][83] +168 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-snb4/igt@gem_vm_create@invalid-create.html
* igt@gen3_render_tiledy_blits:
- shard-mtlp: NOTRUN -> [SKIP][84] +7 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-3/igt@gen3_render_tiledy_blits.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][85] +7 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-6/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-9/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#2527]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#2527]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-18/igt@gen9_exec_parse@bb-start-cmd.html
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#2856]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-11/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-out:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#2856])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-4/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@shadow-peek:
- shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_drm_fdinfo@all-busy-check-all:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#14123])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-5/igt@i915_drm_fdinfo@all-busy-check-all.html
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#14123])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@i915_drm_fdinfo@all-busy-check-all.html
* igt@i915_drm_fdinfo@busy-idle-check-all@ccs0:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#11527]) +7 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-4/igt@i915_drm_fdinfo@busy-idle-check-all@ccs0.html
* igt@i915_drm_fdinfo@busy-idle-check-all@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#11527]) +6 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-6/igt@i915_drm_fdinfo@busy-idle-check-all@rcs0.html
* igt@i915_drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#11527]) +5 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-14/igt@i915_drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@i915_drm_fdinfo@busy-idle@bcs0:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#14073]) +11 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@i915_drm_fdinfo@busy-idle@bcs0.html
* igt@i915_drm_fdinfo@busy-idle@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#14073]) +6 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-3/igt@i915_drm_fdinfo@busy-idle@rcs0.html
* igt@i915_drm_fdinfo@busy-idle@vcs0:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#14073]) +7 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-7/igt@i915_drm_fdinfo@busy-idle@vcs0.html
* igt@i915_module_load@fault-injection:
- shard-glk10: NOTRUN -> [ABORT][100] ([i915#15342] / [i915#15481])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk10/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@i915_driver_hw_probe:
- shard-glk10: NOTRUN -> [ABORT][101] ([i915#15481])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk10/igt@i915_module_load@fault-injection@i915_driver_hw_probe.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-glk10: NOTRUN -> [DMESG-WARN][102] ([i915#15342])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk10/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@fault-injection@intel_gt_init-enodev:
- shard-glk10: NOTRUN -> [SKIP][103] +94 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk10/igt@i915_module_load@fault-injection@intel_gt_init-enodev.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#8399])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#6590]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][106] ([i915#13790] / [i915#2681]) +1 other test warn
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#14498])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend:
- shard-dg1: [PASS][108] -> [DMESG-WARN][109] ([i915#4423]) +6 other tests dmesg-warn
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg1-12/igt@i915_pm_rpm@system-suspend.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-12/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#11681] / [i915#6621])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-12/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#4387])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#4387])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-7/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6188])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-4/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#6188])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-8/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#5723])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@gem_contexts:
- shard-dg1: [PASS][116] -> [DMESG-FAIL][117] ([i915#15433])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg1-18/igt@i915_selftest@live@gem_contexts.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-18/igt@i915_selftest@live@gem_contexts.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: [PASS][118] -> [ABORT][119] ([i915#15131])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-7/igt@i915_suspend@debugfs-reader.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-1/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [PASS][120] -> [INCOMPLETE][121] ([i915#4817])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-7/igt@i915_suspend@fence-restore-untiled.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#4212]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#4212])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-4/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#5190]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#4212]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-14/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][126] ([i915#12761]) +1 other test incomplete
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-snb: NOTRUN -> [SKIP][127] ([i915#1769])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-snb5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#1769] / [i915#3555])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#1769] / [i915#3555])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-glk: NOTRUN -> [SKIP][130] ([i915#1769])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#5286]) +6 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5286]) +5 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-16/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#5286]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#5286]) +7 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#3638]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-12/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#3638]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#4538] / [i915#5190]) +8 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][138] +22 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#4538]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-17/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][140] +61 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#6095]) +46 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#6095]) +182 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][144] +368 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#12313])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#6095]) +108 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6095]) +24 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-2/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#6095]) +64 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-10/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#12313])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#6095]) +77 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#6095]) +24 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#12805])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-16/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#12805])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#12805])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#12805])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#12805] / [i915#14544])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#14098] / [i915#6095]) +52 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk10: NOTRUN -> [INCOMPLETE][158] ([i915#12796]) +1 other test incomplete
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk10/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#14544] / [i915#6095]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#12313])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-11/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#12313]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#3742])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-16/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#13781]) +4 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +6 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-16/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +6 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +6 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-4/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +8 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][171] -> [SKIP][172] ([i915#12655] / [i915#3555])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg2-11/igt@kms_color@deep-color.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-7/igt@kms_color@deep-color.html
* igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][173] ([i915#15522]) +4 other tests fail
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-5/igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-a-edp-1.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#15523]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-8/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-hdmi-a-1.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#6944] / [i915#7116] / [i915#9424]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-12/igt@kms_content_protection@atomic.html
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-4/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#6944])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-4/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#15330] / [i915#3116] / [i915#3299])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#15330]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-7/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#15330] / [i915#3116] / [i915#3299])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#15330] / [i915#3116]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#6944] / [i915#7118] / [i915#9424]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-5/igt@kms_content_protection@legacy.html
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#6944] / [i915#7118] / [i915#9424]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-4/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#6944] / [i915#9424]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-8/igt@kms_content_protection@lic-type-1.html
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#6944] / [i915#9424])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-7/igt@kms_content_protection@lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#6944] / [i915#9424])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-12/igt@kms_content_protection@lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#6944] / [i915#9424])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-6/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#6944] / [i915#7118])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-6/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#6944] / [i915#7116])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-14/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#6944])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-16/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@suspend-resume@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][192] ([i915#7173]) +1 other test fail
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-11/igt@kms_content_protection@suspend-resume@pipe-a-dp-3.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#3555]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8814])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-max-size.html
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#14544] / [i915#3555])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [PASS][196] -> [FAIL][197] ([i915#13566]) +5 other tests fail
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#3555]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-4/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#13049]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#13049])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#13049]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-16/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#13049])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-2/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#13049])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#3555]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][205] ([i915#13566]) +4 other tests fail
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu-1: NOTRUN -> [FAIL][206] ([i915#13566]) +1 other test fail
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-rkl: [PASS][207] -> [FAIL][208] ([i915#13566]) +2 other tests fail
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#14544] / [i915#4103])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#4103]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#9809]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#13046] / [i915#5354]) +4 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][213] ([i915#2346])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#9067])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#9067])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#4103] / [i915#4213])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#9723])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-9/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#14544] / [i915#9723])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#13691])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-4/igt@kms_display_modes@extended-mode-basic.html
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#13691])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#13691])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-12/igt@kms_display_modes@extended-mode-basic.html
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#13691])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-6/igt@kms_display_modes@extended-mode-basic.html
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#13691])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#13749])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-3/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#13749]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-3/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#13749])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#13749])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-7/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#13707])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#13707])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-14/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#3840]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-7/igt@kms_dsc@dsc-basic.html
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#3840]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#3840])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#3840])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#3840])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-9/igt@kms_dsc@dsc-with-formats.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#3840])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-5/igt@kms_dsc@dsc-with-formats.html
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#3840]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#3469])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-12/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#3469])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#9337])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-7/igt@kms_feature_discovery@dp-mst.html
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#9337])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-12/igt@kms_feature_discovery@dp-mst.html
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#9337])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-6/igt@kms_feature_discovery@dp-mst.html
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#9337])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-8/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#658])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-1/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#658])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#3637] / [i915#9934]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#9934]) +4 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-4/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#3637] / [i915#9934]) +3 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#9934]) +5 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-16/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#14544] / [i915#9934]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk10: NOTRUN -> [INCOMPLETE][250] ([i915#12745] / [i915#4839])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk10/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
- shard-snb: [PASS][251] -> [TIMEOUT][252] ([i915#14033] / [i915#14350])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk10: NOTRUN -> [INCOMPLETE][253] ([i915#4839])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk10/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][254] -> [TIMEOUT][255] ([i915#14033])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#9934]) +4 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#3637] / [i915#9934]) +7 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-8/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-glk: NOTRUN -> [FAIL][258] ([i915#13027]) +1 other test fail
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][259] ([i915#12745] / [i915#4839] / [i915#6113])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk1/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][260] ([i915#12745] / [i915#6113])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#2672] / [i915#8813]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][262] ([i915#2587] / [i915#2672]) +7 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#2672]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#2672] / [i915#3555]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#2672]) +3 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#2587] / [i915#2672] / [i915#3555]) +2 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#14544] / [i915#2672] / [i915#3555])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#2672] / [i915#3555]) +2 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#2587] / [i915#2672]) +2 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#14544] / [i915#2672])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#2672] / [i915#3555]) +3 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#2672] / [i915#3555]) +4 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@force-edid:
- shard-dg1: [PASS][275] -> [DMESG-WARN][276] ([i915#4391] / [i915#4423])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg1-19/igt@kms_force_connector_basic@force-edid.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-18/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#8708]) +3 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#5354]) +27 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#1825]) +14 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][280] +33 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#8708]) +13 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#15104]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#15102]) +4 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#15104]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#14544] / [i915#15102] / [i915#3023])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#8708]) +12 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#1825]) +41 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#15102] / [i915#3023]) +19 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#15102]) +28 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#15102]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#15102]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#15102]) +7 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#15102] / [i915#3458]) +10 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#14544] / [i915#1825]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#15102] / [i915#3458]) +10 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#3555] / [i915#8228])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-2/igt@kms_hdr@bpc-switch-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#3555] / [i915#8228])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8228]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-17/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-swap:
- shard-tglu: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8228])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-2/igt@kms_hdr@static-swap.html
- shard-dg2: [PASS][300] -> [SKIP][301] ([i915#3555] / [i915#8228])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg2-11/igt@kms_hdr@static-swap.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-5/igt@kms_hdr@static-swap.html
- shard-rkl: [PASS][302] -> [SKIP][303] ([i915#3555] / [i915#8228])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_hdr@static-swap.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-4/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8228]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#15460])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-9/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#15458])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-5/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#13522])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-12/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][308] ([i915#13522])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#13522])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#13522])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#13522])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-tglu-1: NOTRUN -> [SKIP][312] +30 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [PASS][313] -> [INCOMPLETE][314] ([i915#12756] / [i915#13476])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-rkl: [PASS][315] -> [INCOMPLETE][316] ([i915#13476])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#14712]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
- shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#14712])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#13705])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-11/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][320] ([i915#13026]) +1 other test incomplete
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk9/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk10: NOTRUN -> [FAIL][321] ([i915#10647] / [i915#12169])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][322] ([i915#10647]) +1 other test fail
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#13958])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#13958]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][325] ([i915#13958])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-12/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-tglu: NOTRUN -> [SKIP][326] ([i915#13958])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-6/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][327] ([i915#13958])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-2/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#13958])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-4/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][329] ([i915#14259])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-8/igt@kms_plane_multiple@tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#14259])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-5/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][331] ([i915#14259])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][332] ([i915#15329]) +9 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#15329]) +8 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#15329] / [i915#3555])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#15329]) +3 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#5354]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-8/igt@kms_pm_backlight@basic-brightness.html
- shard-dg1: NOTRUN -> [SKIP][337] ([i915#5354])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-14/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][338] ([i915#9812]) +1 other test skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-3/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][339] ([i915#9685])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#9685]) +1 other test skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@kms_pm_dc@dc5-psr.html
- shard-dg2: NOTRUN -> [SKIP][341] ([i915#9685])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2: NOTRUN -> [SKIP][342] ([i915#3828])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-1/igt@kms_pm_dc@dc5-retention-flops.html
- shard-dg1: NOTRUN -> [SKIP][343] ([i915#3828])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-14/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu-1: NOTRUN -> [FAIL][344] ([i915#9295])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [PASS][345] -> [SKIP][346] ([i915#15073])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#15073]) +1 other test skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#14544] / [i915#15073])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg1: NOTRUN -> [SKIP][349] ([i915#12916] / [i915#4423])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][350] ([i915#15073])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][351] ([i915#15073])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [PASS][352] -> [ABORT][353] ([i915#15132])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-7/igt@kms_pm_rpm@system-suspend-idle.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-1/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][354] ([i915#6524] / [i915#6805]) +1 other test skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#6524])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html
- shard-tglu: NOTRUN -> [SKIP][356] ([i915#6524])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-7/igt@kms_prime@basic-crc-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][357] ([i915#6524])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-2/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg1: NOTRUN -> [SKIP][358] ([i915#6524]) +1 other test skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-14/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#11520]) +3 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-glk: NOTRUN -> [SKIP][360] ([i915#11520]) +10 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk6/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg1: NOTRUN -> [SKIP][361] ([i915#11520] / [i915#4423])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-18/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
- shard-mtlp: NOTRUN -> [SKIP][362] ([i915#12316]) +2 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][363] ([i915#9808])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][364] ([i915#11520]) +8 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/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-rkl: NOTRUN -> [SKIP][365] ([i915#11520] / [i915#14544])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
- shard-snb: NOTRUN -> [SKIP][366] ([i915#11520]) +4 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-snb5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][367] ([i915#11520]) +7 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-12/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][368] ([i915#11520]) +8 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-glk10: NOTRUN -> [SKIP][369] ([i915#11520]) +2 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk10/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][370] ([i915#11520]) +6 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-5/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][371] ([i915#9683])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][372] ([i915#9683])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-rkl: NOTRUN -> [SKIP][373] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][374] ([i915#1072] / [i915#9732]) +18 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-3/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][375] ([i915#9732]) +24 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-3/igt@kms_psr@fbc-psr2-no-drrs.html
- shard-mtlp: NOTRUN -> [SKIP][376] ([i915#9688]) +9 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-8/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@pr-sprite-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][377] ([i915#1072] / [i915#9732]) +17 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-5/igt@kms_psr@pr-sprite-mmap-gtt.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][378] ([i915#9732]) +10 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][379] ([i915#1072] / [i915#9732]) +19 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][380] ([i915#4884])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-18/igt@kms_rotation_crc@exhaust-fences.html
- shard-dg2: NOTRUN -> [SKIP][381] ([i915#4235])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-11/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][382] ([i915#15500])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-glk9/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][383] ([i915#5289])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][384] ([i915#12755] / [i915#5190]) +1 other test skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg1: NOTRUN -> [SKIP][385] ([i915#5289]) +2 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu: NOTRUN -> [SKIP][386] ([i915#5289])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][387] ([i915#12755])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][388] ([i915#12755])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][389] ([i915#3555]) +8 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][390] ([i915#13179]) +1 other test abort
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-7/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic:
- shard-snb: [PASS][391] -> [FAIL][392] ([i915#15106]) +2 other tests fail
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-snb6/igt@kms_setmode@basic.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-snb1/igt@kms_setmode@basic.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][393] ([i915#8623])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- shard-dg2: NOTRUN -> [SKIP][394] ([i915#15243] / [i915#3555]) +1 other test skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-11/igt@kms_vrr@flip-basic.html
- shard-rkl: NOTRUN -> [SKIP][395] ([i915#15243] / [i915#3555])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-5/igt@kms_vrr@flip-basic.html
- shard-mtlp: NOTRUN -> [SKIP][396] ([i915#3555] / [i915#8808])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-5/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu: NOTRUN -> [SKIP][397] ([i915#9906])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-5/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flipline:
- shard-tglu-1: NOTRUN -> [SKIP][398] ([i915#3555]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_vrr@flipline.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][399] ([i915#9906]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu-1: NOTRUN -> [SKIP][400] ([i915#9906])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][401] ([i915#7387])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-1/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][402] -> [FAIL][403] ([i915#4349]) +10 other tests fail
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu-1: NOTRUN -> [SKIP][404] ([i915#8516]) +1 other test skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@semaphore-busy@bcs0:
- shard-mtlp: [PASS][405] -> [FAIL][406] ([i915#4349]) +6 other tests fail
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-mtlp-8/igt@perf_pmu@semaphore-busy@bcs0.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-7/igt@perf_pmu@semaphore-busy@bcs0.html
* igt@perf_pmu@semaphore-busy@vcs1:
- shard-dg1: [PASS][407] -> [FAIL][408] ([i915#4349]) +3 other tests fail
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg1-12/igt@perf_pmu@semaphore-busy@vcs1.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html
* igt@prime_vgem@basic-read:
- shard-rkl: NOTRUN -> [SKIP][409] ([i915#3291] / [i915#3708])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-8/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][410] ([i915#3708])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [FAIL][411] ([i915#12910]) +9 other tests fail
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-8/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: NOTRUN -> [SKIP][412] ([i915#9917])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][413] ([i915#4818])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@tools_test@sysfs_l3_parity.html
- shard-mtlp: NOTRUN -> [SKIP][414] ([i915#4818])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-3/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][415] ([i915#4818])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-6/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_eio@kms:
- shard-tglu: [DMESG-WARN][416] ([i915#13363]) -> [PASS][417]
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-tglu-9/igt@gem_eio@kms.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-8/igt@gem_eio@kms.html
- shard-rkl: [DMESG-WARN][418] ([i915#13363]) -> [PASS][419]
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-2/igt@gem_eio@kms.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@gem_eio@kms.html
* igt@gem_exec_fence@invalid-fence-array:
- shard-dg1: [INCOMPLETE][420] -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg1-16/igt@gem_exec_fence@invalid-fence-array.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@gem_exec_fence@invalid-fence-array.html
* igt@i915_pm_rpm@system-suspend:
- shard-rkl: [INCOMPLETE][422] ([i915#13356]) -> [PASS][423]
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-4/igt@i915_pm_rpm@system-suspend.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@i915_pm_rpm@system-suspend.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][424] ([i915#7984]) -> [PASS][425]
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-mtlp-6/igt@i915_power@sanity.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-7/igt@i915_power@sanity.html
* igt@i915_suspend@forcewake:
- shard-rkl: [ABORT][426] ([i915#15140]) -> [PASS][427]
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-1/igt@i915_suspend@forcewake.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-8/igt@i915_suspend@forcewake.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][428] ([i915#5138]) -> [PASS][429]
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_flip@modeset-vs-vblank-race:
- shard-tglu: [FAIL][430] ([i915#10826]) -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-tglu-2/igt@kms_flip@modeset-vs-vblank-race.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-2/igt@kms_flip@modeset-vs-vblank-race.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible@a-hdmi-a2:
- shard-rkl: [FAIL][432] ([i915#10826]) -> [PASS][433] +1 other test pass
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-3/igt@kms_flip@modeset-vs-vblank-race-interruptible@a-hdmi-a2.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@kms_flip@modeset-vs-vblank-race-interruptible@a-hdmi-a2.html
* igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a1:
- shard-tglu: [FAIL][434] -> [PASS][435]
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-tglu-2/igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a1.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-2/igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a1.html
* igt@kms_flip@modeset-vs-vblank-race@a-vga1:
- shard-snb: [FAIL][436] ([i915#10826]) -> [PASS][437] +2 other tests pass
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-snb4/igt@kms_flip@modeset-vs-vblank-race@a-vga1.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-snb5/igt@kms_flip@modeset-vs-vblank-race@a-vga1.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: [SKIP][438] ([i915#3555] / [i915#8228]) -> [PASS][439]
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-3/igt@kms_hdr@static-toggle-dpms.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-dg1: [DMESG-WARN][440] ([i915#4423]) -> [PASS][441] +1 other test pass
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][442] ([i915#15073]) -> [PASS][443]
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg1-12/igt@kms_pm_rpm@dpms-lpsp.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][444] ([i915#15073]) -> [PASS][445] +2 other tests pass
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [INCOMPLETE][446] ([i915#12276]) -> [PASS][447] +2 other tests pass
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [FAIL][448] ([i915#15420]) -> [PASS][449] +1 other test pass
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-mtlp-8/igt@kms_vrr@negative-basic.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-6/igt@kms_vrr@negative-basic.html
* igt@perf@blocking@0-rcs0:
- shard-tglu: [FAIL][450] ([i915#10538]) -> [PASS][451] +1 other test pass
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-tglu-3/igt@perf@blocking@0-rcs0.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-3/igt@perf@blocking@0-rcs0.html
#### Warnings ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: [SKIP][452] ([i915#14544] / [i915#8411]) -> [SKIP][453] ([i915#8411])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: [SKIP][454] ([i915#3555] / [i915#9323]) -> [SKIP][455] ([i915#14544] / [i915#3555] / [i915#9323]) +1 other test skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: [SKIP][456] ([i915#14544] / [i915#7697]) -> [SKIP][457] ([i915#7697])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: [SKIP][458] ([i915#14544] / [i915#4525]) -> [SKIP][459] ([i915#4525])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_reloc@basic-gtt-read-active:
- shard-rkl: [SKIP][460] ([i915#3281]) -> [SKIP][461] ([i915#14544] / [i915#3281]) +1 other test skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-read-active.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: [SKIP][462] ([i915#14544] / [i915#3281]) -> [SKIP][463] ([i915#3281]) +2 other tests skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-8/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: [SKIP][464] ([i915#14544] / [i915#7276]) -> [SKIP][465] ([i915#7276])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: [SKIP][466] ([i915#14544] / [i915#4613] / [i915#7582]) -> [SKIP][467] ([i915#4613] / [i915#7582])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@massive-random:
- shard-rkl: [SKIP][468] ([i915#14544] / [i915#4613]) -> [SKIP][469] ([i915#4613])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-5/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@verify-random:
- shard-rkl: [SKIP][470] ([i915#4613]) -> [SKIP][471] ([i915#14544] / [i915#4613]) +1 other test skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-2/igt@gem_lmem_swapping@verify-random.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@gem_lmem_swapping@verify-random.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][472] ([i915#14544] / [i915#3282]) -> [SKIP][473] ([i915#3282])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: [SKIP][474] ([i915#8411]) -> [SKIP][475] ([i915#14544] / [i915#8411])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-rkl: [SKIP][476] ([i915#3282]) -> [SKIP][477] ([i915#14544] / [i915#3282]) +1 other test skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-8/igt@gem_tiled_partial_pwrite_pread@writes.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: [SKIP][478] ([i915#3297]) -> [SKIP][479] ([i915#14544] / [i915#3297])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-4/igt@gem_userptr_blits@coherency-sync.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: [SKIP][480] ([i915#14544] / [i915#3297]) -> [SKIP][481] ([i915#3297]) +1 other test skip
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: [SKIP][482] ([i915#3281] / [i915#3297]) -> [SKIP][483] ([i915#14544] / [i915#3281] / [i915#3297])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-5/igt@gem_userptr_blits@relocations.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@gem_userptr_blits@relocations.html
* igt@gen7_exec_parse@chained-batch:
- shard-rkl: [SKIP][484] -> [SKIP][485] ([i915#14544]) +9 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-7/igt@gen7_exec_parse@chained-batch.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@gen7_exec_parse@chained-batch.html
* igt@gen9_exec_parse@secure-batches:
- shard-rkl: [SKIP][486] ([i915#14544] / [i915#2527]) -> [SKIP][487] ([i915#2527]) +2 other tests skip
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-4/igt@gen9_exec_parse@secure-batches.html
* igt@i915_power@sanity:
- shard-rkl: [SKIP][488] ([i915#7984]) -> [SKIP][489] ([i915#14544] / [i915#7984])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-4/igt@i915_power@sanity.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-rkl: [SKIP][490] ([i915#14544] / [i915#6245]) -> [SKIP][491] ([i915#6245])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@i915_query@hwconfig_table.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-8/igt@i915_query@hwconfig_table.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][492] ([i915#5286]) -> [SKIP][493] ([i915#14544] / [i915#5286]) +1 other test skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-rkl: [SKIP][494] ([i915#14544] / [i915#5286]) -> [SKIP][495] ([i915#5286]) +1 other test skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-rkl: [SKIP][496] ([i915#3638]) -> [SKIP][497] ([i915#14544] / [i915#3638])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-8/igt@kms_big_fb@linear-32bpp-rotate-270.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: [SKIP][498] ([i915#14544] / [i915#3638]) -> [SKIP][499] ([i915#3638]) +1 other test skip
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][500] ([i915#6095]) -> [SKIP][501] ([i915#14544] / [i915#6095]) +11 other tests skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-3/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][502] ([i915#14544] / [i915#6095]) -> [SKIP][503] ([i915#6095]) +3 other tests skip
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][504] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][505] ([i915#14098] / [i915#6095]) +3 other tests skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][506] ([i915#12313] / [i915#14544]) -> [SKIP][507] ([i915#12313]) +2 other tests skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-rkl: [SKIP][508] ([i915#14098] / [i915#6095]) -> [SKIP][509] ([i915#14098] / [i915#14544] / [i915#6095]) +12 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-7/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: [SKIP][510] ([i915#3742]) -> [SKIP][511] ([i915#14544] / [i915#3742])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-rkl: [SKIP][512] ([i915#14544]) -> [SKIP][513] +5 other tests skip
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_chamelium_color@ctm-red-to-blue.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-1/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: [SKIP][514] ([i915#11151] / [i915#7828]) -> [SKIP][515] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-dg1: [SKIP][516] ([i915#11151] / [i915#7828]) -> [SKIP][517] ([i915#11151] / [i915#4423] / [i915#7828])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: [SKIP][518] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][519] ([i915#11151] / [i915#7828]) +1 other test skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][520] ([i915#9433]) -> [SKIP][521] ([i915#6944] / [i915#9424])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg1-12/igt@kms_content_protection@mei-interface.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-17/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-rkl: [SKIP][522] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][523] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-2/igt@kms_content_protection@type1.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2: [FAIL][524] ([i915#1339] / [i915#7173]) -> [SKIP][525] ([i915#6944] / [i915#7118] / [i915#9424])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg2-11/igt@kms_content_protection@uevent.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-8/igt@kms_content_protection@uevent.html
- shard-rkl: [SKIP][526] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][527] ([i915#6944] / [i915#7118] / [i915#9424])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_content_protection@uevent.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-dg1: [SKIP][528] ([i915#3555]) -> [SKIP][529] ([i915#3555] / [i915#4423])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-32x10.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-rkl: [SKIP][530] ([i915#3555]) -> [SKIP][531] ([i915#14544] / [i915#3555]) +1 other test skip
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-4/igt@kms_cursor_crc@cursor-random-32x32.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: [SKIP][532] ([i915#14544] / [i915#3555]) -> [SKIP][533] ([i915#3555]) +1 other test skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: [SKIP][534] ([i915#14544] / [i915#9723]) -> [SKIP][535] ([i915#9723])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg1: [SKIP][536] ([i915#13749]) -> [SKIP][537] ([i915#13749] / [i915#4423])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg1-16/igt@kms_dp_link_training@non-uhbr-mst.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-13/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-rkl: [SKIP][538] ([i915#14544] / [i915#9934]) -> [SKIP][539] ([i915#9934])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-rkl: [SKIP][540] ([i915#9934]) -> [SKIP][541] ([i915#14544] / [i915#9934]) +1 other test skip
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-4/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-snb: [FAIL][542] ([i915#10826] / [i915#14600]) -> [FAIL][543] ([i915#14600])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-snb6/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-snb6/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-rkl: [SKIP][544] ([i915#2672] / [i915#3555]) -> [SKIP][545] ([i915#14544] / [i915#2672] / [i915#3555])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: [SKIP][546] ([i915#2672]) -> [SKIP][547] ([i915#14544] / [i915#2672])
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: [SKIP][548] ([i915#14544] / [i915#2672] / [i915#3555]) -> [SKIP][549] ([i915#2672] / [i915#3555]) +1 other test skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: [SKIP][550] ([i915#14544] / [i915#2672]) -> [SKIP][551] ([i915#2672]) +1 other test skip
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-rkl: [SKIP][552] ([i915#14544] / [i915#1825]) -> [SKIP][553] ([i915#1825]) +13 other tests skip
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: [SKIP][554] ([i915#5439]) -> [SKIP][555] ([i915#14544] / [i915#5439])
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][556] ([i915#15102]) -> [SKIP][557] ([i915#14544] / [i915#15102]) +2 other tests skip
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: [SKIP][558] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][559] ([i915#15102] / [i915#3023]) +7 other tests skip
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: [SKIP][560] ([i915#15102] / [i915#3458]) -> [SKIP][561] ([i915#15102] / [i915#3458] / [i915#4423]) +1 other test skip
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][562] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][563] ([i915#15102] / [i915#3458])
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-dg1: [SKIP][564] -> [SKIP][565] ([i915#4423])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen:
- shard-rkl: [SKIP][566] ([i915#1825]) -> [SKIP][567] ([i915#14544] / [i915#1825]) +11 other tests skip
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-rkl: [SKIP][568] ([i915#14544] / [i915#15102]) -> [SKIP][569] ([i915#15102])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg2: [SKIP][570] ([i915#15102] / [i915#3458]) -> [SKIP][571] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][572] ([i915#15102] / [i915#3023]) -> [SKIP][573] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: [SKIP][574] ([i915#12713]) -> [SKIP][575] ([i915#13331])
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg2-5/igt@kms_hdr@brightness-with-hdr.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-11/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: [SKIP][576] ([i915#1187] / [i915#12713]) -> [SKIP][577] ([i915#12713])
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-tglu-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: [SKIP][578] ([i915#13958]) -> [SKIP][579] ([i915#13958] / [i915#14544])
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-4.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: [SKIP][580] ([i915#14544] / [i915#15329]) -> [SKIP][581] ([i915#15329]) +3 other tests skip
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:
- shard-dg1: [SKIP][582] ([i915#15329]) -> [SKIP][583] ([i915#15329] / [i915#4423]) +1 other test skip
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-18/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: [SKIP][584] ([i915#14544] / [i915#9685]) -> [SKIP][585] ([i915#9685])
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: [SKIP][586] ([i915#3828]) -> [SKIP][587] ([i915#14544] / [i915#3828])
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-4/igt@kms_pm_dc@dc5-retention-flops.html
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@package-g7:
- shard-rkl: [SKIP][588] ([i915#14544] / [i915#15403]) -> [SKIP][589] ([i915#15403])
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_pm_rpm@package-g7.html
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-5/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][590] ([i915#11520]) -> [SKIP][591] ([i915#11520] / [i915#14544]) +2 other tests skip
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-rkl: [SKIP][592] ([i915#11520] / [i915#14544]) -> [SKIP][593] ([i915#11520]) +1 other test skip
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-rkl: [SKIP][594] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][595] ([i915#1072] / [i915#9732]) +7 other tests skip
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_psr@fbc-pr-primary-page-flip.html
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-rkl: [SKIP][596] ([i915#1072] / [i915#9732]) -> [SKIP][597] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-4/igt@kms_psr@fbc-psr-primary-page-flip.html
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-6/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][598] ([i915#14544] / [i915#5289]) -> [SKIP][599] ([i915#5289])
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: [SKIP][600] ([i915#14544] / [i915#9906]) -> [SKIP][601] ([i915#9906])
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-8/igt@kms_vrr@flip-basic-fastset.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: [SKIP][602] ([i915#14544] / [i915#9917]) -> [SKIP][603] ([i915#9917])
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-rkl-3/igt@sriov_basic@bind-unbind-vf.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[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#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[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#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[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#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420
[i915#15433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15433
[i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15522
[i915#15523]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15523
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[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#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[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#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[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#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[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#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[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#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[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#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[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#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[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#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8694 -> IGTPW_14320
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_17798: 070b98e5f13d7b8c95b1f348629cdef8b7aafa80 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14320: 07b872470f740bcb96e52b0d65008842aa567bf8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8694: 8694
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/index.html
[-- Attachment #2: Type: text/html, Size: 208122 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.Full: success for tests/intel/xe_fault_injection: Close drm fd before unbind
2026-01-09 22:40 [PATCH] tests/intel/xe_fault_injection: Close drm fd before unbind Shuicheng Lin
` (2 preceding siblings ...)
2026-01-10 3:18 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-01-10 5:31 ` Patchwork
2026-01-21 2:43 ` [PATCH] " Lin, Shuicheng
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-01-10 5:31 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 51452 bytes --]
== Series Details ==
Series: tests/intel/xe_fault_injection: Close drm fd before unbind
URL : https://patchwork.freedesktop.org/series/159903/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8694_FULL -> XEIGTPW_14320_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14320_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-lnl: NOTRUN -> [SKIP][1] ([Intel XE#3279])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2370])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1407])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +7 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-7/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#607])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +20 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#2191])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2314] / [Intel XE#2894])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-9/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#367]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#367])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2652] / [Intel XE#787]) +26 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#3432]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +8 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +26 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2724])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-max:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#306])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@kms_chamelium_color@ctm-max.html
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2325]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#373]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2252]) +19 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#6507])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#6974])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2390]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][24] ([Intel XE#3304]) +3 other tests fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][25] ([Intel XE#1178] / [Intel XE#3304]) +1 other test fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#3278]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-8/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][27] ([Intel XE#6707]) +1 other test fail
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2320]) +12 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1424])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2321]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2321]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2:
- shard-bmg: NOTRUN -> [FAIL][32] ([Intel XE#6841]) +1 other test fail
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#309]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#4210])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#4354])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#4331])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2244])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-9/igt@kms_dsc@dsc-basic.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#4422]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#776])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2373])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1421])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-8/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][42] -> [FAIL][43] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1401] / [Intel XE#1745])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1401])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2293]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2380]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1397]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#651]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2311]) +55 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#656]) +15 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#4141]) +22 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2352]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2313]) +55 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1469])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2350])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#6901])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#6911])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2925])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2486])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#6912])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#4329] / [Intel XE#6912])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-9/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane_lowres@tiling-4@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#599]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-5/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2393])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#6886]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#6886]) +9 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#870])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2391])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][71] -> [FAIL][72] ([Intel XE#718])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2499])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1439] / [Intel XE#836])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#6814])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1406] / [Intel XE#4608]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#1406] / [Intel XE#1489]) +16 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#1406] / [Intel XE#2387]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1406]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-2/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-primary-render@edp-1:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1406] / [Intel XE#4609]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-2/igt@kms_psr@fbc-psr2-primary-render@edp-1.html
* igt@kms_psr@psr2-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +19 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@kms_psr@psr2-no-drrs.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#1406] / [Intel XE#2414]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2330])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-7/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1435])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_sharpness_filter@filter-formats:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#6503]) +5 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@kms_sharpness_filter@filter-formats.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2168])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_vrr@cmrr.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][91] -> [FAIL][92] ([Intel XE#4459]) +1 other test fail
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#1499]) +3 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1499])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#2142]) +1 other test fail
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_compute@eu-busy-10s:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#6599])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@xe_compute@eu-busy-10s.html
* igt@xe_compute_preempt@compute-preempt-many-vram:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#5191])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@xe_compute_preempt@compute-preempt-many-vram.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#4837]) +11 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug@vma-ufence-faultable:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#4837]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-7/igt@xe_eudebug@vma-ufence-faultable.html
* igt@xe_eudebug_online@debugger-reopen:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@xe_eudebug_online@debugger-reopen.html
* igt@xe_eudebug_online@interrupt-other:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#4837] / [Intel XE#6665]) +9 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-9/igt@xe_eudebug_online@interrupt-other.html
* igt@xe_eudebug_online@pagefault-read-stress:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#6665])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@xe_eudebug_online@pagefault-read-stress.html
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#6665] / [Intel XE#6681])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@xe_eudebug_online@pagefault-read-stress.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#5793])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-beng-large-cm:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#688])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-5/igt@xe_evict@evict-beng-large-cm.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][107] -> [INCOMPLETE][108] ([Intel XE#6321])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1392]) +5 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2322]) +12 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority-smem:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#6874]) +13 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-1/igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority-smem.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#6874]) +55 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_system_allocator@many-64k-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#5007]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html
* igt@xe_exec_system_allocator@many-large-execqueues-malloc-prefetch-madvise:
- shard-lnl: NOTRUN -> [WARN][114] ([Intel XE#5786])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-2/igt@xe_exec_system_allocator@many-large-execqueues-malloc-prefetch-madvise.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][115] ([Intel XE#6480])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#4943]) +6 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-2/igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#4943]) +35 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2229])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#2229])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-4/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@small-bar:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#512])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-7/igt@xe_mmap@small-bar.html
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#586])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@xe_mmap@small-bar.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133]) -> ([PASS][134], [PASS][135], [PASS][136], [PASS][137], [SKIP][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147]) ([Intel XE#2457])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-3/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-3/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-10/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-10/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-1/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-1/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-1/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-9/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-9/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-2/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-2/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-2/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-9/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-9/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-9/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#6964]) +6 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
- shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#6964]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2245])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-9/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2236])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#979])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-5/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2427] / [Intel XE#6953])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#2284] / [Intel XE#366])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-2/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2284])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#579])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-1/igt@xe_pm@vram-d3cold-threshold.html
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#579])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-bmg: [PASS][158] -> [FAIL][159] ([Intel XE#5937])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-1/igt@xe_pmu@all-fn-engine-activity-load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#4733]) +5 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#944]) +5 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-10/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#944]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#3342])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: NOTRUN -> [FAIL][164] ([Intel XE#6569]) +1 other test fail
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-9/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_survivability@i2c-functionality:
- shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#6529])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-3/igt@xe_survivability@i2c-functionality.html
#### Possible fixes ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][166] ([Intel XE#3862]) -> [PASS][167] +1 other test pass
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][168] ([Intel XE#6715]) -> [PASS][169]
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [FAIL][170] ([Intel XE#5299]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][172] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][173] +1 other test pass
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [FAIL][174] ([Intel XE#301]) -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][176] ([Intel XE#718]) -> [PASS][177]
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
#### Warnings ####
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][178] ([Intel XE#1729]) -> [SKIP][179] ([Intel XE#2426])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8694/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[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#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6480
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6715
[Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
[Intel XE#6841]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6841
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[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#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8694 -> IGTPW_14320
* Linux: xe-4360-e956f80845230486226415d5176b9bc5f792aad4 -> xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80
IGTPW_14320: 07b872470f740bcb96e52b0d65008842aa567bf8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8694: 8694
xe-4360-e956f80845230486226415d5176b9bc5f792aad4: e956f80845230486226415d5176b9bc5f792aad4
xe-4361-070b98e5f13d7b8c95b1f348629cdef8b7aafa80: 070b98e5f13d7b8c95b1f348629cdef8b7aafa80
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14320/index.html
[-- Attachment #2: Type: text/html, Size: 58664 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [PATCH] tests/intel/xe_fault_injection: Close drm fd before unbind
2026-01-09 22:40 [PATCH] tests/intel/xe_fault_injection: Close drm fd before unbind Shuicheng Lin
` (3 preceding siblings ...)
2026-01-10 5:31 ` ✓ Xe.CI.Full: success " Patchwork
@ 2026-01-21 2:43 ` Lin, Shuicheng
2026-02-17 16:29 ` Dandamudi, Priyanka
4 siblings, 1 reply; 8+ messages in thread
From: Lin, Shuicheng @ 2026-01-21 2:43 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org
Hi all,
May I ask review of this patch? Thanks.
Best Regards
Shuicheng
On Fri, Jan 9, 2026 2:41 PM Shuicheng Lin wrote:
> Close the sysfs and DRM device fd before unbinding the xe driver. Otherwise
> the open fd holds a reference, and the subsequent bind can come up with
> different card/render minor numbers (e.g. renderD128 -> renderD129, card0 -
> > card1).
>
> Also drop the unused DRM fd parameter from inject_fault_probe() and
> probe_fail_guc() now that these paths don't require it.
>
> Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
> ---
> tests/intel/xe_fault_injection.c | 14 +++++++-------
> 1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
> index f3bfc4b40..76d1c6fa3 100644
> --- a/tests/intel/xe_fault_injection.c
> +++ b/tests/intel/xe_fault_injection.c
> @@ -260,7 +260,7 @@ static void ignore_fail_dump_in_dmesg(const char
> function_name[], bool enable)
> * @xe_wopcm_init: xe_wopcm_init
> */
> static int
> -inject_fault_probe(int fd, const char pci_slot[], const char function_name[])
> +inject_fault_probe(const char pci_slot[], const char function_name[])
> {
> int err = 0;
> igt_info("Injecting error \"%s\" (%d) in function \"%s\"\n", @@ -
> 289,7 +289,7 @@ inject_fault_probe(int fd, const char pci_slot[], const char
> function_name[])
> * @xe_guc_mmio_send_recv: Inject an error when calling
> xe_guc_mmio_send_recv
> * @xe_guc_ct_send_recv: Inject an error when calling
> xe_guc_ct_send_recv
> */
> -static void probe_fail_guc(int fd, const char pci_slot[], const char
> function_name[],
> +static void probe_fail_guc(const char pci_slot[], const char
> +function_name[],
> struct fault_injection_params *fault_params) {
> int iter_start = 0, iter_end = 0, iter = 0; @@ -308,7 +308,7 @@ static
> void probe_fail_guc(int fd, const char pci_slot[], const char function_na
> fault_params->space = i;
> fault_params->times = MAX_INJECTIONS_PER_ITER;
> setup_injection_fault(fault_params);
> - inject_fault_probe(fd, pci_slot, function_name);
> + inject_fault_probe(pci_slot, function_name);
> igt_kmod_unbind("xe", pci_slot);
>
> /*
> @@ -662,6 +662,8 @@ int igt_main_args("I:", NULL, help_str, opt_handler,
> NULL)
> oa_add_config_fail(fd, sysfs, devid, pci_slot, s-
> >name);
>
> igt_fixture() {
> + close(sysfs);
> + drm_close_driver(fd);
> igt_kmod_unbind("xe", pci_slot);
> }
>
> @@ -670,7 +672,7 @@ int igt_main_args("I:", NULL, help_str, opt_handler,
> NULL)
> bool should_pass = s->pf_only && is_vf_device;
> int err;
>
> - err = inject_fault_probe(fd, pci_slot, s->name);
> + err = inject_fault_probe(pci_slot, s->name);
>
> igt_assert_eq(should_pass ? 0 : INJECT_ERRNO, err);
> igt_kmod_unbind("xe", pci_slot);
> @@ -680,12 +682,10 @@ int igt_main_args("I:", NULL, help_str, opt_handler,
> NULL)
> igt_subtest_f("probe-fail-guc-%s", s->name) {
> memcpy(&fault_params, &default_fault_params,
> sizeof(struct fault_injection_params));
> - probe_fail_guc(fd, pci_slot, s->name, &fault_params);
> + probe_fail_guc(pci_slot, s->name, &fault_params);
> }
>
> igt_fixture() {
> - close(sysfs);
> - drm_close_driver(fd);
> injection_list_clear();
> igt_kmod_bind("xe", pci_slot);
> }
> --
> 2.50.1
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [PATCH] tests/intel/xe_fault_injection: Close drm fd before unbind
2026-01-21 2:43 ` [PATCH] " Lin, Shuicheng
@ 2026-02-17 16:29 ` Dandamudi, Priyanka
0 siblings, 0 replies; 8+ messages in thread
From: Dandamudi, Priyanka @ 2026-02-17 16:29 UTC (permalink / raw)
To: Lin, Shuicheng, igt-dev@lists.freedesktop.org
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Lin,
> Shuicheng
> Sent: 21 January 2026 08:14 AM
> To: igt-dev@lists.freedesktop.org
> Subject: RE: [PATCH] tests/intel/xe_fault_injection: Close drm fd before
> unbind
>
> Hi all,
> May I ask review of this patch? Thanks.
>
> Best Regards
> Shuicheng
>
> On Fri, Jan 9, 2026 2:41 PM Shuicheng Lin wrote:
> > Close the sysfs and DRM device fd before unbinding the xe driver.
> > Otherwise the open fd holds a reference, and the subsequent bind can
> > come up with different card/render minor numbers (e.g. renderD128 ->
> > renderD129, card0 -
> > > card1).
> >
> > Also drop the unused DRM fd parameter from inject_fault_probe() and
> > probe_fail_guc() now that these paths don't require it.
> >
> > Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
> > ---
> > tests/intel/xe_fault_injection.c | 14 +++++++-------
> > 1 file changed, 7 insertions(+), 7 deletions(-)
> >
> > diff --git a/tests/intel/xe_fault_injection.c
> > b/tests/intel/xe_fault_injection.c
> > index f3bfc4b40..76d1c6fa3 100644
> > --- a/tests/intel/xe_fault_injection.c
> > +++ b/tests/intel/xe_fault_injection.c
> > @@ -260,7 +260,7 @@ static void ignore_fail_dump_in_dmesg(const char
> > function_name[], bool enable)
> > * @xe_wopcm_init: xe_wopcm_init
> > */
> > static int
> > -inject_fault_probe(int fd, const char pci_slot[], const char
> > function_name[])
> > +inject_fault_probe(const char pci_slot[], const char function_name[])
> > {
> > int err = 0;
> > igt_info("Injecting error \"%s\" (%d) in function \"%s\"\n", @@ -
> > 289,7 +289,7 @@ inject_fault_probe(int fd, const char pci_slot[],
> > const char
> > function_name[])
> > * @xe_guc_mmio_send_recv: Inject an error when calling
> > xe_guc_mmio_send_recv
> > * @xe_guc_ct_send_recv: Inject an error when calling
> > xe_guc_ct_send_recv
> > */
> > -static void probe_fail_guc(int fd, const char pci_slot[], const char
> > function_name[],
> > +static void probe_fail_guc(const char pci_slot[], const char
> > +function_name[],
> > struct fault_injection_params *fault_params) {
> > int iter_start = 0, iter_end = 0, iter = 0; @@ -308,7 +308,7 @@
> > static void probe_fail_guc(int fd, const char pci_slot[], const char
> function_na
> > fault_params->space = i;
> > fault_params->times = MAX_INJECTIONS_PER_ITER;
> > setup_injection_fault(fault_params);
> > - inject_fault_probe(fd, pci_slot, function_name);
> > + inject_fault_probe(pci_slot, function_name);
> > igt_kmod_unbind("xe", pci_slot);
> >
> > /*
> > @@ -662,6 +662,8 @@ int igt_main_args("I:", NULL, help_str,
> > opt_handler,
> > NULL)
> > oa_add_config_fail(fd, sysfs, devid, pci_slot, s-
> > >name);
> >
> > igt_fixture() {
> > + close(sysfs);
> > + drm_close_driver(fd);
> > igt_kmod_unbind("xe", pci_slot);
> > }
> >
> > @@ -670,7 +672,7 @@ int igt_main_args("I:", NULL, help_str,
> > opt_handler,
> > NULL)
> > bool should_pass = s->pf_only && is_vf_device;
> > int err;
> >
> > - err = inject_fault_probe(fd, pci_slot, s->name);
> > + err = inject_fault_probe(pci_slot, s->name);
> >
> > igt_assert_eq(should_pass ? 0 : INJECT_ERRNO, err);
> > igt_kmod_unbind("xe", pci_slot);
> > @@ -680,12 +682,10 @@ int igt_main_args("I:", NULL, help_str,
> > opt_handler,
> > NULL)
> > igt_subtest_f("probe-fail-guc-%s", s->name) {
> > memcpy(&fault_params, &default_fault_params,
> > sizeof(struct
> fault_injection_params));
> > - probe_fail_guc(fd, pci_slot, s->name, &fault_params);
> > + probe_fail_guc(pci_slot, s->name, &fault_params);
> > }
> >
> > igt_fixture() {
> > - close(sysfs);
> > - drm_close_driver(fd);
> > injection_list_clear();
> > igt_kmod_bind("xe", pci_slot);
> > }
> > --
> > 2.50.1
LGTM,
Reviewed-by: Priyanka Dandamudi <priyanka.dandamudi@intel.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: ✗ i915.CI.Full: failure for tests/intel/xe_fault_injection: Close drm fd before unbind
2026-01-10 3:18 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-02-17 16:43 ` Lin, Shuicheng
0 siblings, 0 replies; 8+ messages in thread
From: Lin, Shuicheng @ 2026-02-17 16:43 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org,
i915-ci-infra@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 1085 bytes --]
>Possible regressions
>igt@i915_selftest@live:
>shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-dg1-18/igt@i915_selftest@live.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-18/igt@i915_selftest@live.html>
>igt@perf_pmu@most-busy-idle-check-all:
>shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg2-5/igt@perf_pmu@most-busy-idle-check-all.html> +1 other test fail
>igt@perf_pmu@most-busy-idle-check-all@rcs0:
>shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-dg1-16/igt@perf_pmu@most-busy-idle-check-all@rcs0.html> +1 other test fail
>shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17798/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14320/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html> +1 other test fail
My patch doesn’t affect upper tests. The failure is not related to my patch.
Best Regards
Shuicheng
[-- Attachment #2: Type: text/html, Size: 15856 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-02-17 16:43 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-09 22:40 [PATCH] tests/intel/xe_fault_injection: Close drm fd before unbind Shuicheng Lin
2026-01-10 0:33 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-01-10 0:37 ` ✓ i915.CI.BAT: " Patchwork
2026-01-10 3:18 ` ✗ i915.CI.Full: failure " Patchwork
2026-02-17 16:43 ` Lin, Shuicheng
2026-01-10 5:31 ` ✓ Xe.CI.Full: success " Patchwork
2026-01-21 2:43 ` [PATCH] " Lin, Shuicheng
2026-02-17 16:29 ` Dandamudi, Priyanka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox