* [PATCH i-g-t] tests/core_hotunplug: Skip unplug when sysfs 'remove' is missing
@ 2026-02-03 10:46 Marcin Bernatowicz
2026-02-03 15:08 ` ✓ Xe.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Marcin Bernatowicz @ 2026-02-03 10:46 UTC (permalink / raw)
To: igt-dev
Cc: Marcin Bernatowicz, Jakub Kolakowski, Janusz Krzysztofik,
Lukasz Laguna
Some PCI devices don't expose the sysfs remove attribute. The unplug/rescan
paths in core_hotunplug rely on writing 1 to remove, so attempting those
subtests would fail, skip the test early when remove is not present.
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
---
tests/core_hotunplug.c | 17 +++++++++++++----
1 file changed, 13 insertions(+), 4 deletions(-)
diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
index e23b5b89f..7c9dae1bf 100644
--- a/tests/core_hotunplug.c
+++ b/tests/core_hotunplug.c
@@ -245,6 +245,17 @@ static void device_unplug(struct hotunplug *priv, const char *prefix,
{
igt_require(priv->fd.sysfs_dev == -1);
+ priv->fd.sysfs_dev = openat(priv->fd.sysfs_bus, priv->dev_bus_addr,
+ O_DIRECTORY);
+ igt_assert_fd(priv->fd.sysfs_dev);
+
+ if (!igt_sysfs_has_attr(priv->fd.sysfs_dev, "remove")) {
+ priv->fd.sysfs_dev = close_sysfs(priv->fd.sysfs_dev);
+ igt_assert_eq(priv->fd.sysfs_dev, -1);
+ igt_skip("PCI %s has no sysfs 'remove' attribute, skipping test\n",
+ priv->dev_bus_addr);
+ }
+
/*
* FIXME: on some devices, the audio driver (snd_hda_intel)
* binds into the i915 driver. On such hardware, kernel warnings
@@ -254,16 +265,14 @@ static void device_unplug(struct hotunplug *priv, const char *prefix,
* unbind i915 driver, reloading it when binding again.
*/
if (igt_audio_driver_unload(&priv->snd_driver)) {
+ priv->fd.sysfs_dev = close_sysfs(priv->fd.sysfs_dev);
+ igt_assert_eq(priv->fd.sysfs_dev, -1);
igt_skip("Audio driver %s in use, skipping test\n",
priv->snd_driver);
} else if (priv->snd_driver) {
igt_info("Unloaded audio driver %s\n", priv->snd_driver);
}
- priv->fd.sysfs_dev = openat(priv->fd.sysfs_bus, priv->dev_bus_addr,
- O_DIRECTORY);
- igt_assert_fd(priv->fd.sysfs_dev);
-
local_debug("%sunplugging the device\n", prefix);
priv->failure = "Device unplug failure!";
--
2.43.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for tests/core_hotunplug: Skip unplug when sysfs 'remove' is missing
2026-02-03 10:46 [PATCH i-g-t] tests/core_hotunplug: Skip unplug when sysfs 'remove' is missing Marcin Bernatowicz
@ 2026-02-03 15:08 ` Patchwork
2026-02-03 15:25 ` ✓ i915.CI.BAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-02-03 15:08 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 999 bytes --]
== Series Details ==
Series: tests/core_hotunplug: Skip unplug when sysfs 'remove' is missing
URL : https://patchwork.freedesktop.org/series/161083/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8730_BAT -> XEIGTPW_14479_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8730 -> IGTPW_14479
* Linux: xe-4489-1c038794140250955ba149f8175f6564e573d5c7 -> xe-4490-9f5242e63f0bab74d47ae6792e0c25a324184a6b
IGTPW_14479: 14479
IGT_8730: 8730
xe-4489-1c038794140250955ba149f8175f6564e573d5c7: 1c038794140250955ba149f8175f6564e573d5c7
xe-4490-9f5242e63f0bab74d47ae6792e0c25a324184a6b: 9f5242e63f0bab74d47ae6792e0c25a324184a6b
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/index.html
[-- Attachment #2: Type: text/html, Size: 1568 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for tests/core_hotunplug: Skip unplug when sysfs 'remove' is missing
2026-02-03 10:46 [PATCH i-g-t] tests/core_hotunplug: Skip unplug when sysfs 'remove' is missing Marcin Bernatowicz
2026-02-03 15:08 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-02-03 15:25 ` Patchwork
2026-02-04 3:59 ` ✗ i915.CI.Full: failure " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-02-03 15:25 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3413 bytes --]
== Series Details ==
Series: tests/core_hotunplug: Skip unplug when sysfs 'remove' is missing
URL : https://patchwork.freedesktop.org/series/161083/
State : success
== Summary ==
CI Bug Log - changes from IGT_8730 -> IGTPW_14479
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/index.html
Participating hosts (43 -> 41)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14479 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8730/bat-arls-5/igt@i915_selftest@live@workarounds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-dg2-14: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8730/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/bat-dg2-14/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-arlh-2: [INCOMPLETE][5] ([i915#15618]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8730/bat-arlh-2/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/bat-arlh-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_heartbeat:
- bat-arlh-2: [INCOMPLETE][7] -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8730/bat-arlh-2/igt@i915_selftest@live@gt_heartbeat.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/bat-arlh-2/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8730/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/bat-arlh-3/igt@i915_selftest@live@workarounds.html
* igt@kms_hdmi_inject@inject-audio:
- fi-tgl-1115g4: [FAIL][11] ([i915#15646]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8730/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#15618]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15618
[i915#15646]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15646
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8730 -> IGTPW_14479
* Linux: CI_DRM_17924 -> CI_DRM_17925
CI-20190529: 20190529
CI_DRM_17924: 1c038794140250955ba149f8175f6564e573d5c7 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_17925: 9f5242e63f0bab74d47ae6792e0c25a324184a6b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14479: 14479
IGT_8730: 8730
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/index.html
[-- Attachment #2: Type: text/html, Size: 4299 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for tests/core_hotunplug: Skip unplug when sysfs 'remove' is missing
2026-02-03 10:46 [PATCH i-g-t] tests/core_hotunplug: Skip unplug when sysfs 'remove' is missing Marcin Bernatowicz
2026-02-03 15:08 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-02-03 15:25 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-02-04 3:59 ` Patchwork
2026-02-04 5:16 ` ✗ Xe.CI.FULL: " Patchwork
2026-02-05 19:13 ` [PATCH i-g-t] " Kamil Konieczny
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-02-04 3:59 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 146583 bytes --]
== Series Details ==
Series: tests/core_hotunplug: Skip unplug when sysfs 'remove' is missing
URL : https://patchwork.freedesktop.org/series/161083/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_17925_full -> IGTPW_14479_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14479_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14479_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_14479/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14479_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_create@create-clear@smem0:
- shard-dg1: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg1-13/igt@gem_create@create-clear@smem0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-12/igt@gem_create@create-clear@smem0.html
* igt@gem_workarounds@suspend-resume-context:
- shard-tglu: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-tglu-8/igt@gem_workarounds@suspend-resume-context.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-7/igt@gem_workarounds@suspend-resume-context.html
* igt@kms_draw_crc@draw-method-blt:
- shard-glk: NOTRUN -> [DMESG-WARN][5] +1 other test dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk1/igt@kms_draw_crc@draw-method-blt.html
Known issues
------------
Here are the changes found in IGTPW_14479_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-12/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#6230])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#6230])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-10/igt@api_intel_bb@crc32.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#11078]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-10/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#11078])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_buddy@drm_buddy:
- shard-glk: NOTRUN -> [DMESG-WARN][12] ([i915#15095]) +1 other test dmesg-warn
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk6/igt@drm_buddy@drm_buddy.html
* igt@drm_buddy@drm_buddy@drm_test_buddy_fragmentation_performance:
- shard-tglu: NOTRUN -> [DMESG-WARN][13] ([i915#15095]) +1 other test dmesg-warn
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-4/igt@drm_buddy@drm_buddy@drm_test_buddy_fragmentation_performance.html
* igt@gem_busy@semaphore:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#3936])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-14/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#6335])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#6335])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-4/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#14544] / [i915#6335])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8562])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-16/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [PASS][21] -> [FAIL][22] ([i915#9561]) +1 other test fail
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [PASS][23] -> [ABORT][24] ([i915#15131]) +1 other test abort
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-4/igt@gem_ctx_isolation@preservation-s3.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-1/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_exec_balancer@hog:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#4812])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-14/igt@gem_exec_balancer@hog.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-8/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
- shard-tglu: NOTRUN -> [SKIP][27] ([i915#4525])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-7/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][28] ([i915#6334]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk6/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#6334]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-7/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-18/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-3/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) +4 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) +6 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-13/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-8/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#3281]) +5 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4860]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-8/igt@gem_fence_thrash@bo-copy.html
* igt@gem_lmem_swapping@basic:
- shard-tglu: NOTRUN -> [SKIP][38] ([i915#4613])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-10/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@massive-random:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#4613]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][40] ([i915#4613]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk2/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu-1: NOTRUN -> [SKIP][41] ([i915#4613]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4077]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-5/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4083])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-8/igt@gem_mmap_wc@write-read-distinct.html
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4083])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-16/igt@gem_mmap_wc@write-read-distinct.html
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4083])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-4/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3282]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-8/igt@gem_partial_pwrite_pread@reads.html
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#14544] / [i915#3282]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#3282]) +4 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#3282]) +5 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads.html
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3282]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-3/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-tglu: NOTRUN -> [WARN][51] ([i915#2658])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-2/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][52] ([i915#14702] / [i915#2658])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk9/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-context-2:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4270]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-1/igt@gem_pxp@create-regular-context-2.html
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-13/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu: NOTRUN -> [SKIP][55] ([i915#13398])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-9/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#5190] / [i915#8428]) +5 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-7/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#8428]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4079])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-7/igt@gem_render_tiled_blits@basic.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4885])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-13/igt@gem_softpin@evict-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4885])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-7/igt@gem_softpin@evict-snoop.html
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4885])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-1/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][62] ([i915#13809])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk9/igt@gem_softpin@noreloc-s3.html
- shard-rkl: NOTRUN -> [INCOMPLETE][63] ([i915#13809])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_pread_basic:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4079])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-12/igt@gem_tiled_pread_basic.html
* igt@gem_tiling_max_stride:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4077]) +6 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-5/igt@gem_tiling_max_stride.html
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4077]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-13/igt@gem_tiling_max_stride.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4879])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-11/igt@gem_unfence_active_buffers.html
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4879])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-13/igt@gem_unfence_active_buffers.html
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4879])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-2/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#3297])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-5/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3297] / [i915#4880])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3281] / [i915#3297])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-1/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-7/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [PASS][74] -> [INCOMPLETE][75] ([i915#13356])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-8/igt@gem_workarounds@suspend-resume-fd.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen7_exec_parse@cmd-crossing-page:
- shard-dg2: NOTRUN -> [SKIP][76] +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-5/igt@gen7_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@allowed-all:
- shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#2527] / [i915#2856])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#2856]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-2/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-snb: NOTRUN -> [SKIP][79] +106 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-snb7/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-10/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#2527]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-16/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#2856]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-4/igt@gen9_exec_parse@valid-registers.html
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@isolation@rcs0:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#14073]) +7 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-6/igt@i915_drm_fdinfo@isolation@rcs0.html
* igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
- shard-dg1: NOTRUN -> [INCOMPLETE][85] ([i915#15481])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-17/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-tglu: NOTRUN -> [ABORT][86] ([i915#15342]) +1 other test abort
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-6/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@fault-injection@uc_fw_rsa_data_create:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#15479]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-6/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html
* igt@i915_module_load@reload-no-display:
- shard-dg2: [PASS][88] -> [DMESG-WARN][89] ([i915#13029] / [i915#14545])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-5/igt@i915_module_load@reload-no-display.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-6/igt@i915_module_load@reload-no-display.html
- shard-dg1: [PASS][90] -> [DMESG-WARN][91] ([i915#13029] / [i915#14545])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg1-16/igt@i915_module_load@reload-no-display.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-14/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#6590]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-1/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#6590]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-4/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [PASS][94] -> [FAIL][95] ([i915#12964]) +1 other test fail
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-11/igt@i915_pm_rc6_residency@rc6-accuracy.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][96] ([i915#13356] / [i915#15172])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk2/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#11681] / [i915#6621]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-7/igt@i915_pm_rps@min-max-config-idle.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#7707])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-8/igt@intel_hwmon@hwmon-read.html
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#7707])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-7/igt@intel_hwmon@hwmon-read.html
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#7707])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-8/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#4212]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4212])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-6/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [PASS][103] -> [INCOMPLETE][104] ([i915#12761]) +1 other test incomplete
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html
- shard-glk10: NOTRUN -> [INCOMPLETE][105] ([i915#12761])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk10/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-glk10: NOTRUN -> [INCOMPLETE][106] ([i915#12761] / [i915#14995])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk10/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#14544] / [i915#9531])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][108] ([i915#1769])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#5286]) +4 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#5286]) +4 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-8/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#5286]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5286]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#3638]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#3638]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-12/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][115] +20 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5190]) +8 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][118] +7 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#6095]) +59 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-3:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#10307] / [i915#6095]) +134 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-11/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-3.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#6095]) +178 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#6095]) +14 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-5/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#6095]) +49 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#12313]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#14098] / [i915#6095]) +37 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#12805])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][127] ([i915#15582]) +1 other test incomplete
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#6095]) +34 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#6095]) +52 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#12313])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#12313]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-17/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][133] +487 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk9/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#11151] / [i915#7828]) +7 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-2/igt@kms_chamelium_audio@dp-audio.html
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#11151] / [i915#7828]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-5/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#11151] / [i915#7828]) +6 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-8/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#11151] / [i915#7828]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#11151] / [i915#7828]) +4 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-5/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#11151] / [i915#7828]) +6 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-13/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#6944] / [i915#7118] / [i915#9424])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][142] ([i915#7173])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#15330] / [i915#3299])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@legacy:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#6944] / [i915#7118] / [i915#9424]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#6944])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-8/igt@kms_content_protection@legacy-hdcp14.html
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#6944])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-2/igt@kms_content_protection@legacy-hdcp14.html
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#6944])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-12/igt@kms_content_protection@legacy-hdcp14.html
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#6944]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-2/igt@kms_content_protection@legacy-hdcp14.html
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6944])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-5/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#6944])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#6944] / [i915#9424])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-6/igt@kms_content_protection@lic-type-1.html
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#6944] / [i915#9424])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-1/igt@kms_content_protection@lic-type-1.html
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#6944] / [i915#9424])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_content_protection@lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#6944] / [i915#9424])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-9/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#14544] / [i915#6944])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [PASS][156] -> [FAIL][157] ([i915#13566]) +3 other tests fail
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#13049]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#8814])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#3555])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#13049]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#13049])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-14/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#13049])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#13049])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#3555]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-rkl: [PASS][166] -> [FAIL][167] ([i915#13566]) +1 other test fail
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][168] ([i915#13566]) +4 other tests fail
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-glk: NOTRUN -> [FAIL][169] ([i915#13028])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#13046] / [i915#5354])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#9809])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#4103] / [i915#4213]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#4103] / [i915#4213])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#4103]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#4213])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#4103]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#4103])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#9833])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#9723])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#9723])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#13691])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-8/igt@kms_display_modes@extended-mode-basic.html
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#13691])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-16/igt@kms_display_modes@extended-mode-basic.html
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#13691])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-5/igt@kms_display_modes@extended-mode-basic.html
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#13691])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-8/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#3804])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#13748])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-8/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#8812])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#8812])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-14/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#3840] / [i915#9688])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp.html
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#14544] / [i915#3840])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#3840])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#3840])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#3840] / [i915#9053])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#3840] / [i915#9053])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#3840] / [i915#9053])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-18/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#3840] / [i915#9053])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#3840] / [i915#9053])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][200] ([i915#9878])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk2/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#3955])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-5/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#658])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][203] ([i915#3637] / [i915#9934]) +6 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#3637] / [i915#9934]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-4/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#9934])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-glk: [PASS][206] -> [FAIL][207] ([i915#13027]) +1 other test fail
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#9934]) +5 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-14/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-snb: [PASS][209] -> [TIMEOUT][210] ([i915#14033] / [i915#14350])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [PASS][211] -> [TIMEOUT][212] ([i915#14033]) +2 other tests timeout
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-snb6/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#9934]) +7 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#9934]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-snb: [PASS][215] -> [INCOMPLETE][216] ([i915#12314]) +1 other test incomplete
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-snb5/igt@kms_flip@2x-plain-flip-ts-check.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-snb1/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#3637] / [i915#9934])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#15645])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#15643]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#15643]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#15643]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#15643])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#15104])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#8708]) +10 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#5354]) +15 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#1825]) +6 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#14544] / [i915#1825]) +4 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#15102]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#15102] / [i915#3458]) +8 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#15102] / [i915#3023]) +11 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][231] +26 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#1825]) +33 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#15574]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#15574]) +4 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#15574])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc.html
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#15574]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#15102]) +23 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#8708]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#15102]) +6 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#9766])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#14544] / [i915#15102])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#15102])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#15102] / [i915#3458]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#10433] / [i915#15102] / [i915#3458])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][245] +58 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][246] +20 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#15574]) +2 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#15574]) +3 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#8708]) +13 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg1: [PASS][251] -> [SKIP][252] ([i915#13030])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg1-17/igt@kms_hdmi_inject@inject-audio.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-14/igt@kms_hdmi_inject@inject-audio.html
- shard-tglu: [PASS][253] -> [FAIL][254] ([i915#14867])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-tglu-8/igt@kms_hdmi_inject@inject-audio.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-10/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-8/igt@kms_hdr@bpc-switch.html
- shard-tglu: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-2/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#12713])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-swap:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228]) +2 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_hdr@static-swap.html
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-12/igt@kms_hdr@static-swap.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#15459])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#15458])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-4/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: [PASS][262] -> [SKIP][263] ([i915#15459])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#15459])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#15458])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-13/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#15638])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#15638])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#1839] / [i915#4816])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#1839])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#14712])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-b-plane-5:
- shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#15608]) +12 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#15608] / [i915#8825]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-a-plane-3:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#15608]) +12 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-11/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-a-plane-3.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-a-plane-5:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#15609]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-11/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#15609] / [i915#8825]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-11/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-12/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping:
- shard-glk10: NOTRUN -> [SKIP][277] +46 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk10/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#15608] / [i915#15609] / [i915#8825])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#15608] / [i915#15609] / [i915#8825])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-10/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-a-plane-3:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#15608]) +7 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-10/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-a-plane-3.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-a-plane-7:
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#15609]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-14/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#15609] / [i915#8825])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-5.html
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#15609]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-7:
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#15609] / [i915#8825]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-14/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-7.html
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#15609] / [i915#8825])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-10/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#15609]) +2 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#15608] / [i915#8825]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-18/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-b-plane-0:
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#15608]) +18 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-18/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-b-plane-0.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#15608]) +17 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#15608] / [i915#8825]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#15609]) +2 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#15608] / [i915#15609] / [i915#8825])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#15609])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#15609] / [i915#8825])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#15608] / [i915#8825]) +3 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-5/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][297] ([i915#10647] / [i915#12169]) +1 other test fail
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][298] ([i915#10647]) +3 other tests fail
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk5/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-4:
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#3555]) +2 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-13/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][300] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-4/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#11614] / [i915#3582]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-4/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#13958])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-7/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#13958])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#14259])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-8/igt@kms_plane_multiple@tiling-y.html
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#14259])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-5/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#14259])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#15329]) +3 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#15329]) +4 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-14/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#15329]) +4 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#15329]) +4 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#9812])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#9812])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-8/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg1: NOTRUN -> [SKIP][313] ([i915#5354])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-16/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#9685])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-13/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#4281])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#8430])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#15073]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#15073])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][319] -> [SKIP][320] ([i915#15073]) +3 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg1: [PASS][321] -> [SKIP][322] ([i915#15073])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#14544] / [i915#6524])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#11520]) +3 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#11520]) +3 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
- shard-snb: NOTRUN -> [SKIP][326] ([i915#11520])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-snb5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
- shard-mtlp: NOTRUN -> [SKIP][327] ([i915#12316]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][328] ([i915#11520]) +10 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-rkl: NOTRUN -> [SKIP][329] ([i915#11520] / [i915#14544])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#11520]) +5 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
- shard-tglu: NOTRUN -> [SKIP][331] ([i915#11520]) +7 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][332] ([i915#11520]) +5 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-12/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#9683])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-5/igt@kms_psr2_su@page_flip-nv12.html
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#9683])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_psr2_su@page_flip-nv12.html
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#9683])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-12/igt@kms_psr2_su@page_flip-nv12.html
- shard-tglu: NOTRUN -> [SKIP][336] ([i915#9683])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-3/igt@kms_psr2_su@page_flip-nv12.html
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#4348])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-6/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#1072] / [i915#9732]) +20 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-mmap-gtt.html
* igt@kms_psr@fbc-psr-primary-blt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][340] ([i915#9688]) +8 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-3/igt@kms_psr@fbc-psr-primary-blt@edp-1.html
* igt@kms_psr@fbc-psr2-primary-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][341] ([i915#9732]) +24 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-4/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html
* igt@kms_psr@pr-primary-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#9732]) +9 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_psr@pr-primary-mmap-gtt.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][343] ([i915#1072] / [i915#9732]) +14 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-16/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#1072] / [i915#9732]) +16 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-5/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: NOTRUN -> [INCOMPLETE][345] ([i915#15492]) +1 other test incomplete
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk1/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][346] ([i915#15500])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk5/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][347] ([i915#5289])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][348] ([i915#5190])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][349] ([i915#12755]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90.html
- shard-mtlp: NOTRUN -> [SKIP][350] ([i915#12755])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-6/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][351] ([i915#13179]) +1 other test abort
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-3/igt@kms_selftest@drm_framebuffer.html
- shard-dg1: NOTRUN -> [ABORT][352] ([i915#13179]) +1 other test abort
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-18/igt@kms_selftest@drm_framebuffer.html
- shard-glk: NOTRUN -> [ABORT][353] ([i915#13179]) +1 other test abort
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk5/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [PASS][354] -> [FAIL][355] ([i915#15106]) +2 other tests fail
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-mtlp-6/igt@kms_setmode@basic@pipe-b-edp-1.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-4/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][356] ([i915#3555]) +2 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-8/igt@kms_setmode@clone-exclusive-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][357] ([i915#3555] / [i915#8809])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-8/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][358] ([i915#10959])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][359] ([i915#8623])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: NOTRUN -> [SKIP][360] ([i915#9906])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-2/igt@kms_vrr@flip-basic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][361] ([i915#9906])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-13/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-suspend:
- shard-tglu: NOTRUN -> [SKIP][362] ([i915#3555]) +4 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-2/igt@kms_vrr@flip-suspend.html
- shard-rkl: NOTRUN -> [SKIP][363] ([i915#15243] / [i915#3555])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-2/igt@kms_vrr@flip-suspend.html
* igt@perf@global-sseu-config:
- shard-mtlp: NOTRUN -> [SKIP][364] ([i915#7387])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-8/igt@perf@global-sseu-config.html
- shard-dg2: NOTRUN -> [SKIP][365] ([i915#7387])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-5/igt@perf@global-sseu-config.html
* igt@perf_pmu@busy-accuracy-98@rcs0:
- shard-tglu: [PASS][366] -> [FAIL][367] ([i915#4349]) +2 other tests fail
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-tglu-7/igt@perf_pmu@busy-accuracy-98@rcs0.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-10/igt@perf_pmu@busy-accuracy-98@rcs0.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [PASS][368] -> [FAIL][369] ([i915#4349])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu-1: NOTRUN -> [SKIP][370] ([i915#8516])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][371] ([i915#3291] / [i915#3708])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][372] ([i915#3708] / [i915#4077])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-1/igt@prime_vgem@coherency-gtt.html
- shard-rkl: NOTRUN -> [SKIP][373] ([i915#3708])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-1/igt@prime_vgem@coherency-gtt.html
- shard-dg1: NOTRUN -> [SKIP][374] ([i915#3708] / [i915#4077])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-14/igt@prime_vgem@coherency-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][375] ([i915#3708] / [i915#4077])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-mtlp-7/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-write-hang:
- shard-dg1: NOTRUN -> [SKIP][376] ([i915#3708])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-16/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][377] ([i915#9917])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@sriov_basic@bind-unbind-vf.html
- shard-dg1: NOTRUN -> [SKIP][378] ([i915#9917])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-14/igt@sriov_basic@bind-unbind-vf.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][379] ([i915#13356]) -> [PASS][380]
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-4/igt@gem_ccs@suspend-resume.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-3/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][381] ([i915#12392] / [i915#13356]) -> [PASS][382]
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [FAIL][383] ([i915#15454]) -> [PASS][384]
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-4/igt@gem_create@create-ext-cpu-access-big.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_exec_suspend@basic-s3:
- shard-glk: [INCOMPLETE][385] ([i915#13196] / [i915#13356]) -> [PASS][386] +1 other test pass
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-glk9/igt@gem_exec_suspend@basic-s3.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk2/igt@gem_exec_suspend@basic-s3.html
- shard-rkl: [INCOMPLETE][387] ([i915#13356]) -> [PASS][388] +1 other test pass
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-4/igt@gem_exec_suspend@basic-s3.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-5/igt@gem_exec_suspend@basic-s3.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [INCOMPLETE][389] ([i915#13356] / [i915#13820]) -> [PASS][390] +1 other test pass
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [FAIL][391] ([i915#5956]) -> [PASS][392] +1 other test pass
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [INCOMPLETE][393] ([i915#15582]) -> [PASS][394] +1 other test pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [FAIL][395] ([i915#13566]) -> [PASS][396]
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][397] ([i915#13566]) -> [PASS][398] +1 other test pass
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg2: [SKIP][399] ([i915#3555]) -> [PASS][400]
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [INCOMPLETE][401] ([i915#6113]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-rkl: [ABORT][403] ([i915#15132]) -> [PASS][404] +1 other test pass
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-1/igt@kms_flip@flip-vs-suspend-interruptible.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-5/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-dg2: [FAIL][405] ([i915#15389] / [i915#6880]) -> [PASS][406]
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_hdr@static-swap:
- shard-dg2: [SKIP][407] ([i915#3555] / [i915#8228]) -> [PASS][408] +1 other test pass
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-1/igt@kms_hdr@static-swap.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-11/igt@kms_hdr@static-swap.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-rkl: [INCOMPLETE][409] ([i915#14412]) -> [PASS][410] +1 other test pass
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][411] ([i915#14544] / [i915#15073]) -> [PASS][412]
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: [SKIP][413] ([i915#15073]) -> [PASS][414]
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [SKIP][415] ([i915#15073]) -> [PASS][416] +1 other test pass
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-rkl: [SKIP][417] ([i915#15073]) -> [PASS][418] +2 other tests pass
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html
#### Warnings ####
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: [SKIP][419] ([i915#14544] / [i915#9323]) -> [SKIP][420] ([i915#9323])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: [SKIP][421] ([i915#4525]) -> [SKIP][422] ([i915#14544] / [i915#4525]) +1 other test skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-rkl: [SKIP][423] ([i915#14544] / [i915#3281]) -> [SKIP][424] ([i915#3281]) +2 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-noreloc.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-softpin:
- shard-rkl: [SKIP][425] ([i915#3281]) -> [SKIP][426] ([i915#14544] / [i915#3281]) +2 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-3/igt@gem_exec_reloc@basic-softpin.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_readwrite@read-write:
- shard-rkl: [SKIP][427] ([i915#3282]) -> [SKIP][428] ([i915#14544] / [i915#3282])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-2/igt@gem_readwrite@read-write.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@gem_readwrite@read-write.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: [SKIP][429] ([i915#14544] / [i915#3282]) -> [SKIP][430] ([i915#3282]) +2 other tests skip
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: [SKIP][431] ([i915#14544] / [i915#3281] / [i915#3297]) -> [SKIP][432] ([i915#3281] / [i915#3297])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@gem_userptr_blits@relocations.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-3/igt@gem_userptr_blits@relocations.html
* igt@gen9_exec_parse@batch-without-end:
- shard-rkl: [SKIP][433] ([i915#14544] / [i915#2527]) -> [SKIP][434] ([i915#2527])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@gen9_exec_parse@batch-without-end.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-1/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@secure-batches:
- shard-rkl: [SKIP][435] ([i915#2527]) -> [SKIP][436] ([i915#14544] / [i915#2527]) +2 other tests skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-7/igt@gen9_exec_parse@secure-batches.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@fault-injection:
- shard-dg1: [ABORT][437] ([i915#11815]) -> [ABORT][438] ([i915#11815] / [i915#15481]) +1 other test abort
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg1-12/igt@i915_module_load@fault-injection.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-17/igt@i915_module_load@fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: [SKIP][439] ([i915#8399]) -> [SKIP][440] ([i915#14544] / [i915#8399])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-5/igt@i915_pm_freq_api@freq-suspend.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][441] ([i915#14544] / [i915#4387]) -> [SKIP][442] ([i915#4387])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-rkl: [SKIP][443] ([i915#14544] / [i915#6245]) -> [SKIP][444] ([i915#6245])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@i915_query@hwconfig_table.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-5/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: [SKIP][445] ([i915#14544] / [i915#5723]) -> [SKIP][446] ([i915#5723])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@i915_query@test-query-geometry-subslices.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: [SKIP][447] ([i915#1769] / [i915#3555]) -> [SKIP][448] ([i915#14544] / [i915#1769] / [i915#3555])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-rkl: [SKIP][449] ([i915#5286]) -> [SKIP][450] ([i915#14544] / [i915#5286]) +2 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][451] ([i915#14544] / [i915#5286]) -> [SKIP][452] ([i915#5286])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][453] ([i915#14544] / [i915#3638]) -> [SKIP][454] ([i915#3638]) +1 other test skip
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][455] ([i915#14544] / [i915#3828]) -> [SKIP][456] ([i915#3828])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: [SKIP][457] ([i915#3638]) -> [SKIP][458] ([i915#14544] / [i915#3638])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: [SKIP][459] -> [SKIP][460] ([i915#14544]) +5 other tests skip
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][461] ([i915#6095]) -> [SKIP][462] ([i915#14544] / [i915#6095]) +5 other tests skip
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][463] ([i915#14098] / [i915#6095]) -> [SKIP][464] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][465] ([i915#12313] / [i915#14544]) -> [SKIP][466] ([i915#12313])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][467] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][468] ([i915#14098] / [i915#6095]) +11 other tests skip
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][469] ([i915#14544] / [i915#6095]) -> [SKIP][470] ([i915#6095]) +7 other tests skip
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: [SKIP][471] ([i915#11151] / [i915#7828]) -> [SKIP][472] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: [SKIP][473] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][474] ([i915#11151] / [i915#7828]) +3 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-dg2: [SKIP][475] ([i915#6944]) -> [FAIL][476] ([i915#7173])
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-5/igt@kms_content_protection@atomic-dpms-hdcp14.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: [SKIP][477] ([i915#15330]) -> [SKIP][478] ([i915#14544] / [i915#15330]) +1 other test skip
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][479] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][480] ([i915#15330] / [i915#3116])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-5/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2: [FAIL][481] ([i915#7173]) -> [SKIP][482] ([i915#6944] / [i915#7118] / [i915#9424])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-11/igt@kms_content_protection@legacy.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-dg2: [FAIL][483] ([i915#7173]) -> [SKIP][484] ([i915#6944])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-11/igt@kms_content_protection@lic-type-0-hdcp14.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-3/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: [SKIP][485] ([i915#13049]) -> [SKIP][486] ([i915#13049] / [i915#14544])
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: [SKIP][487] ([i915#14544] / [i915#3555]) -> [SKIP][488] ([i915#3555]) +1 other test skip
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: [SKIP][489] ([i915#14544]) -> [SKIP][490] +11 other tests skip
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_dp_aux_dev:
- shard-rkl: [SKIP][491] ([i915#1257] / [i915#14544]) -> [SKIP][492] ([i915#1257])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_dp_aux_dev.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: [SKIP][493] ([i915#13707]) -> [SKIP][494] ([i915#13707] / [i915#14544])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: [SKIP][495] ([i915#14544] / [i915#4854]) -> [SKIP][496] ([i915#4854])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_feature_discovery@chamelium.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: [SKIP][497] ([i915#9934]) -> [SKIP][498] ([i915#14544] / [i915#9934]) +3 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][499] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][500] ([i915#12745] / [i915#4839])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-glk1/igt@kms_flip@2x-flip-vs-suspend.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk9/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][501] ([i915#4839] / [i915#6113]) -> [INCOMPLETE][502] ([i915#4839])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-glk1/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-glk9/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: [SKIP][503] ([i915#14544] / [i915#9934]) -> [SKIP][504] ([i915#9934]) +3 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-rkl: [SKIP][505] ([i915#15643]) -> [SKIP][506] ([i915#14544] / [i915#15643])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][507] ([i915#14544] / [i915#1825]) -> [SKIP][508] ([i915#1825]) +17 other tests skip
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: [SKIP][509] ([i915#1825]) -> [SKIP][510] ([i915#14544] / [i915#1825]) +9 other tests skip
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][511] ([i915#15102]) -> [SKIP][512] ([i915#14544] / [i915#15102]) +1 other test skip
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render:
- shard-rkl: [SKIP][513] ([i915#14544] / [i915#15102]) -> [SKIP][514] ([i915#15102])
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render:
- shard-rkl: [SKIP][515] ([i915#15574]) -> [SKIP][516] ([i915#14544] / [i915#15574])
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: [SKIP][517] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][518] ([i915#15102] / [i915#3023]) +9 other tests skip
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][519] ([i915#15102] / [i915#3458]) -> [SKIP][520] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-rkl: [SKIP][521] ([i915#15102] / [i915#3023]) -> [SKIP][522] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-wc:
- shard-rkl: [SKIP][523] ([i915#14544] / [i915#15574]) -> [SKIP][524] ([i915#15574]) +1 other test skip
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-wc.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:
- shard-dg2: [SKIP][525] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][526] ([i915#15102] / [i915#3458]) +1 other test skip
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][527] ([i915#14544] / [i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][528] ([i915#15608] / [i915#15609] / [i915#8825]) +2 other tests skip
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-rkl: [SKIP][529] ([i915#15608] / [i915#8825]) -> [SKIP][530] ([i915#14544] / [i915#15608] / [i915#8825]) +1 other test skip
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-rkl: [SKIP][531] ([i915#14544] / [i915#15609] / [i915#8825]) -> [SKIP][532] ([i915#15609] / [i915#8825]) +2 other tests skip
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-5.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping:
- shard-rkl: [SKIP][533] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][534] ([i915#14544] / [i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping@pipe-b-plane-5:
- shard-rkl: [SKIP][535] ([i915#15609] / [i915#8825]) -> [SKIP][536] ([i915#14544] / [i915#15609] / [i915#8825]) +1 other test skip
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping@pipe-b-plane-5.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-a-plane-0:
- shard-rkl: [SKIP][537] ([i915#15608]) -> [SKIP][538] ([i915#14544] / [i915#15608]) +2 other tests skip
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-a-plane-0.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-0:
- shard-rkl: [SKIP][539] ([i915#14544] / [i915#15608]) -> [SKIP][540] ([i915#15608]) +2 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-0.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-3/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-0.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-rkl: [SKIP][541] ([i915#13958]) -> [SKIP][542] ([i915#13958] / [i915#14544])
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-y.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: [SKIP][543] ([i915#14259] / [i915#14544]) -> [SKIP][544] ([i915#14259])
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_plane_multiple@tiling-4.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: [SKIP][545] ([i915#14544] / [i915#5354]) -> [SKIP][546] ([i915#5354])
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-8/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade:
- shard-rkl: [SKIP][547] ([i915#5354]) -> [SKIP][548] ([i915#14544] / [i915#5354])
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-5/igt@kms_pm_backlight@fade.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: [SKIP][549] ([i915#14544] / [i915#9685]) -> [SKIP][550] ([i915#9685])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][551] ([i915#9295]) -> [SKIP][552] ([i915#15128])
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][553] ([i915#3828]) -> [SKIP][554] ([i915#9340])
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: [SKIP][555] ([i915#6524]) -> [SKIP][556] ([i915#14544] / [i915#6524])
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-rkl: [SKIP][557] ([i915#11520]) -> [SKIP][558] ([i915#11520] / [i915#14544])
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-3/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][559] ([i915#11520] / [i915#14544]) -> [SKIP][560] ([i915#11520]) +3 other tests skip
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: [SKIP][561] ([i915#9683]) -> [SKIP][562] ([i915#14544] / [i915#9683])
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-dg1: [SKIP][563] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][564] ([i915#1072] / [i915#9732])
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-dg1-12/igt@kms_psr@fbc-pr-sprite-render.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-dg1-16/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: [SKIP][565] ([i915#1072] / [i915#9732]) -> [SKIP][566] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-7/igt@kms_psr@psr2-cursor-mmap-gtt.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-rkl: [SKIP][567] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][568] ([i915#1072] / [i915#9732]) +9 other tests skip
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_psr@psr2-primary-mmap-gtt.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][569] ([i915#5289]) -> [SKIP][570] ([i915#14544] / [i915#5289])
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_vrr@lobf:
- shard-rkl: [SKIP][571] ([i915#11920]) -> [SKIP][572] ([i915#11920] / [i915#14544])
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-3/igt@kms_vrr@lobf.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-6/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-rkl: [SKIP][573] ([i915#14544] / [i915#9906]) -> [SKIP][574] ([i915#9906])
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@kms_vrr@max-min.html
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-4/igt@kms_vrr@max-min.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: [SKIP][575] ([i915#14544] / [i915#8516]) -> [SKIP][576] ([i915#8516])
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-8/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-write:
- shard-rkl: [SKIP][577] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][578] ([i915#3291] / [i915#3708])
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@prime_vgem@basic-write.html
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@prime_vgem@basic-write.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-rkl: [SKIP][579] ([i915#14544] / [i915#9917]) -> [SKIP][580] ([i915#9917])
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17925/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/shard-rkl-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[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#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#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#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[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#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13028]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13028
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#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#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
[i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14867
[i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15095
[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#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15574]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15609]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15645
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[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#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[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#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[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#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#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#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#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8730 -> IGTPW_14479
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_17925: 9f5242e63f0bab74d47ae6792e0c25a324184a6b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14479: 14479
IGT_8730: 8730
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14479/index.html
[-- Attachment #2: Type: text/html, Size: 198531 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/core_hotunplug: Skip unplug when sysfs 'remove' is missing
2026-02-03 10:46 [PATCH i-g-t] tests/core_hotunplug: Skip unplug when sysfs 'remove' is missing Marcin Bernatowicz
` (2 preceding siblings ...)
2026-02-04 3:59 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-02-04 5:16 ` Patchwork
2026-02-05 19:13 ` [PATCH i-g-t] " Kamil Konieczny
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-02-04 5:16 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 38569 bytes --]
== Series Details ==
Series: tests/core_hotunplug: Skip unplug when sysfs 'remove' is missing
URL : https://patchwork.freedesktop.org/series/161083/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8730_FULL -> XEIGTPW_14479_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14479_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14479_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14479_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-1/igt@xe_pm@s4-vm-bind-unbind-all.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-7/igt@xe_pm@s4-vm-bind-unbind-all.html
Known issues
------------
Here are the changes found in XEIGTPW_14479_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1407]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-1/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#7059])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#7059])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2328])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-10/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#367])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-10/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +6 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-5/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2252]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-2/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#306]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-2/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2325])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-7/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2341]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-8/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#307] / [Intel XE#6974])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-1/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2390] / [Intel XE#6974])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-7/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][21] ([Intel XE#1178] / [Intel XE#3304])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-9/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][22] ([Intel XE#6707])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-2/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2320]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2291]) +4 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-9/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#4156])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-10/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2375])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-8/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-bmg: [PASS][28] -> [SKIP][29] ([Intel XE#2316]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-7/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-5/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2316])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][31] -> [FAIL][32] ([Intel XE#301]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7178]) +4 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#7178])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-rte:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#656]) +7 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-2p-rte.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7061])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4141]) +10 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2311]) +9 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2352])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2313]) +10 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2312]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [PASS][42] -> [SKIP][43] ([Intel XE#1503])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-8/igt@kms_hdr@static-toggle.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-5/igt@kms_hdr@static-toggle.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#4596])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-none.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#5020])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#3307])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-8/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#6886]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#6886]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-4/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#870])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-10/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2392])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1406] / [Intel XE#2387])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-7/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-no-drrs@edp-1:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1406] / [Intel XE#4609])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-7/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html
* igt@kms_psr@pr-sprite-blt:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1406]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-1/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1406] / [Intel XE#2414]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2330])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_sharpness_filter@filter-rotations:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#6503]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-10/igt@kms_sharpness_filter@filter-rotations.html
* igt@xe_eudebug@basic-vm-bind:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#4837]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-6/igt@xe_eudebug@basic-vm-bind.html
* igt@xe_eudebug@vm-bind-clear:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#4837]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-7/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-2/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_eudebug_online@tdctl-parameters:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#4837] / [Intel XE#6665]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-5/igt@xe_eudebug_online@tdctl-parameters.html
* igt@xe_evict@evict-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#7140])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-8/igt@xe_evict@evict-small-multi-queue.html
* igt@xe_evict@evict-threads-large:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#688])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-8/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1392]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2322]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-multi-queue-rebind-imm:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#7136])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-7/igt@xe_exec_fault_mode@many-multi-queue-rebind-imm.html
* igt@xe_exec_fault_mode@twice-multi-queue-imm:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#7136]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-7/igt@xe_exec_fault_mode@twice-multi-queue-imm.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#6874]) +14 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-10/igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-basic:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#6874]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-7/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-basic.html
* igt@xe_exec_system_allocator@many-mmap-new-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#4943]) +10 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-8/igt@xe_exec_system_allocator@many-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-free-huge:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#4943]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-free-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-busy-nomemset:
- shard-bmg: [PASS][77] -> [ABORT][78] ([Intel XE#7169])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-busy-nomemset.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-busy-nomemset.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#7138]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind.html
* igt@xe_multigpu_svm@mgpu-latency-copy-basic:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#6964]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-10/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2248])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-2/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2284])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-2/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#944]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-2/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random:
- shard-bmg: [PASS][84] -> [FAIL][85] ([Intel XE#5937]) +1 other test fail
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-4/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-4/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [PASS][86] -> [FAIL][87] ([Intel XE#6569])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-7/igt@xe_sriov_flr@flr-each-isolation.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-9/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#4351])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][89] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [SKIP][91] ([Intel XE#2291]) -> [PASS][92] +3 other tests pass
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-bmg: [SKIP][93] ([Intel XE#2316]) -> [PASS][94] +4 other tests pass
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_hdr@static-swap:
- shard-bmg: [SKIP][95] ([Intel XE#1503]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-5/igt@kms_hdr@static-swap.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-10/igt@kms_hdr@static-swap.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][97] ([Intel XE#4596]) -> [PASS][98]
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][99] ([Intel XE#718]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][101] ([Intel XE#4459]) -> [PASS][102] +1 other test pass
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_exec_reset@gt-reset-stress:
- shard-lnl: [DMESG-WARN][103] ([Intel XE#7023]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-lnl-2/igt@xe_exec_reset@gt-reset-stress.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-6/igt@xe_exec_reset@gt-reset-stress.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [FAIL][105] ([Intel XE#5625]) -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
- shard-bmg: [FAIL][107] ([Intel XE#5937]) -> [PASS][108] +1 other test pass
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-10/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
#### Warnings ####
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][109] ([Intel XE#2341]) -> [FAIL][110] ([Intel XE#1178] / [Intel XE#3304])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-5/igt@kms_content_protection@srm.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-9/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-bmg: [FAIL][111] ([Intel XE#1178] / [Intel XE#3304]) -> [SKIP][112] ([Intel XE#6705])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-4/igt@kms_content_protection@suspend-resume.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-5/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: [SKIP][113] -> [FAIL][114] ([Intel XE#6707])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-2/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][115] ([Intel XE#2312]) -> [SKIP][116] ([Intel XE#2311]) +13 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][117] ([Intel XE#2311]) -> [SKIP][118] ([Intel XE#2312]) +8 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][119] ([Intel XE#4141]) -> [SKIP][120] ([Intel XE#2312]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][121] ([Intel XE#2312]) -> [SKIP][122] ([Intel XE#4141]) +5 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [ABORT][123] ([Intel XE#7169]) -> [SKIP][124] ([Intel XE#2311])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][125] ([Intel XE#2312]) -> [SKIP][126] ([Intel XE#2313]) +11 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][127] ([Intel XE#2313]) -> [SKIP][128] ([Intel XE#2312]) +8 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][129] ([Intel XE#5021]) -> [SKIP][130] ([Intel XE#4596])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-10/igt@kms_plane_multiple@2x-tiling-yf.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][131] ([Intel XE#2509]) -> [SKIP][132] ([Intel XE#2426])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8730/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[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#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[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#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[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#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[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#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6705
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[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#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7023]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7023
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7169
[Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[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
Build changes
-------------
* IGT: IGT_8730 -> IGTPW_14479
* Linux: xe-4489-1c038794140250955ba149f8175f6564e573d5c7 -> xe-4490-9f5242e63f0bab74d47ae6792e0c25a324184a6b
IGTPW_14479: 14479
IGT_8730: 8730
xe-4489-1c038794140250955ba149f8175f6564e573d5c7: 1c038794140250955ba149f8175f6564e573d5c7
xe-4490-9f5242e63f0bab74d47ae6792e0c25a324184a6b: 9f5242e63f0bab74d47ae6792e0c25a324184a6b
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14479/index.html
[-- Attachment #2: Type: text/html, Size: 44711 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] tests/core_hotunplug: Skip unplug when sysfs 'remove' is missing
2026-02-03 10:46 [PATCH i-g-t] tests/core_hotunplug: Skip unplug when sysfs 'remove' is missing Marcin Bernatowicz
` (3 preceding siblings ...)
2026-02-04 5:16 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-02-05 19:13 ` Kamil Konieczny
4 siblings, 0 replies; 6+ messages in thread
From: Kamil Konieczny @ 2026-02-05 19:13 UTC (permalink / raw)
To: Marcin Bernatowicz
Cc: igt-dev, Jakub Kolakowski, Janusz Krzysztofik, Lukasz Laguna
Hi Marcin,
On 2026-02-03 at 11:46:29 +0100, Marcin Bernatowicz wrote:
> Some PCI devices don't expose the sysfs remove attribute. The unplug/rescan
> paths in core_hotunplug rely on writing 1 to remove, so attempting those
> subtests would fail, skip the test early when remove is not present.
>
> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
LGTM
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Regards,
Kamil
> ---
> tests/core_hotunplug.c | 17 +++++++++++++----
> 1 file changed, 13 insertions(+), 4 deletions(-)
>
> diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
> index e23b5b89f..7c9dae1bf 100644
> --- a/tests/core_hotunplug.c
> +++ b/tests/core_hotunplug.c
> @@ -245,6 +245,17 @@ static void device_unplug(struct hotunplug *priv, const char *prefix,
> {
> igt_require(priv->fd.sysfs_dev == -1);
>
> + priv->fd.sysfs_dev = openat(priv->fd.sysfs_bus, priv->dev_bus_addr,
> + O_DIRECTORY);
> + igt_assert_fd(priv->fd.sysfs_dev);
> +
> + if (!igt_sysfs_has_attr(priv->fd.sysfs_dev, "remove")) {
> + priv->fd.sysfs_dev = close_sysfs(priv->fd.sysfs_dev);
> + igt_assert_eq(priv->fd.sysfs_dev, -1);
> + igt_skip("PCI %s has no sysfs 'remove' attribute, skipping test\n",
> + priv->dev_bus_addr);
> + }
> +
> /*
> * FIXME: on some devices, the audio driver (snd_hda_intel)
> * binds into the i915 driver. On such hardware, kernel warnings
> @@ -254,16 +265,14 @@ static void device_unplug(struct hotunplug *priv, const char *prefix,
> * unbind i915 driver, reloading it when binding again.
> */
> if (igt_audio_driver_unload(&priv->snd_driver)) {
> + priv->fd.sysfs_dev = close_sysfs(priv->fd.sysfs_dev);
> + igt_assert_eq(priv->fd.sysfs_dev, -1);
> igt_skip("Audio driver %s in use, skipping test\n",
> priv->snd_driver);
> } else if (priv->snd_driver) {
> igt_info("Unloaded audio driver %s\n", priv->snd_driver);
> }
>
> - priv->fd.sysfs_dev = openat(priv->fd.sysfs_bus, priv->dev_bus_addr,
> - O_DIRECTORY);
> - igt_assert_fd(priv->fd.sysfs_dev);
> -
> local_debug("%sunplugging the device\n", prefix);
> priv->failure = "Device unplug failure!";
>
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-02-05 19:14 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-03 10:46 [PATCH i-g-t] tests/core_hotunplug: Skip unplug when sysfs 'remove' is missing Marcin Bernatowicz
2026-02-03 15:08 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-02-03 15:25 ` ✓ i915.CI.BAT: " Patchwork
2026-02-04 3:59 ` ✗ i915.CI.Full: failure " Patchwork
2026-02-04 5:16 ` ✗ Xe.CI.FULL: " Patchwork
2026-02-05 19:13 ` [PATCH i-g-t] " Kamil Konieczny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox