* [PATCH i-g-t v2] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies
@ 2026-04-07 10:52 Krzysztof Niemiec
2026-04-07 11:42 ` Janusz Krzysztofik
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Krzysztof Niemiec @ 2026-04-07 10:52 UTC (permalink / raw)
To: igt-dev
Cc: Andi Shyti, Janusz Krzysztofik, Krzysztof Karas,
Sebastian Brzezinka, Krzysztof Niemiec
The test alters the environment, specifically the gt frequencies, for
its duration. Using the legacy interface however makes it impossible for
the pre-test state to be restored due to its limitations in multi-gt
systems. Use the per-gt interface instead to properly clean up.
Signed-off-by: Krzysztof Niemiec <krzysztof.niemiec@intel.com>
---
v2:
- Remove the redundant fd open from the i915_for_each_gt loop, as one
is already created as part of the loop (Sebastian)
- Remove extra newline (Krzysztof K)
tests/intel/gem_exec_endless.c | 33 +++++++++++++++++----------------
1 file changed, 17 insertions(+), 16 deletions(-)
diff --git a/tests/intel/gem_exec_endless.c b/tests/intel/gem_exec_endless.c
index 7f35e985c..f3ed8556c 100644
--- a/tests/intel/gem_exec_endless.c
+++ b/tests/intel/gem_exec_endless.c
@@ -316,28 +316,28 @@ static void endless_dispatch(int i915, const struct intel_execution_engine2 *e)
for_each_if(gem_class_can_store_dword(i915, (e)->class)) \
igt_dynamic_f("%s", (e)->name)
-static void pin_rps(int sysfs)
+static void pin_rps(int sysfs_gt)
{
unsigned int max;
- if (igt_sysfs_scanf(sysfs, "gt_RP0_freq_mhz", "%u", &max) != 1)
+ if (igt_sysfs_scanf(sysfs_gt, "rps_RP0_freq_mhz", "%u", &max) != 1)
return;
- igt_sysfs_printf(sysfs, "gt_min_freq_mhz", "%u", max);
- igt_sysfs_printf(sysfs, "gt_max_freq_mhz", "%u", max);
- igt_sysfs_printf(sysfs, "gt_boost_freq_mhz", "%u", max);
+ igt_sysfs_printf(sysfs_gt, "rps_min_freq_mhz", "%u", max);
+ igt_sysfs_printf(sysfs_gt, "rps_max_freq_mhz", "%u", max);
+ igt_sysfs_printf(sysfs_gt, "rps_boost_freq_mhz", "%u", max);
}
-static void unpin_rps(int sysfs)
+static void unpin_rps(int sysfs_gt)
{
unsigned int v;
- if (igt_sysfs_scanf(sysfs, "gt_RPn_freq_mhz", "%u", &v) == 1)
- igt_sysfs_printf(sysfs, "gt_min_freq_mhz", "%u", v);
+ if (igt_sysfs_scanf(sysfs_gt, "rps_RPn_freq_mhz", "%u", &v) == 1)
+ igt_sysfs_printf(sysfs_gt, "rps_min_freq_mhz", "%u", v);
- if (igt_sysfs_scanf(sysfs, "gt_RP0_freq_mhz", "%u", &v) == 1) {
- igt_sysfs_printf(sysfs, "gt_max_freq_mhz", "%u", v);
- igt_sysfs_printf(sysfs, "gt_boost_freq_mhz", "%u", v);
+ if (igt_sysfs_scanf(sysfs_gt, "rps_RP0_freq_mhz", "%u", &v) == 1) {
+ igt_sysfs_printf(sysfs_gt, "rps_max_freq_mhz", "%u", v);
+ igt_sysfs_printf(sysfs_gt, "rps_boost_freq_mhz", "%u", v);
}
}
@@ -355,7 +355,7 @@ int igt_main()
igt_subtest_group() {
struct intel_mmio_data mmio;
- int sysfs;
+ int sysfs_gt, gt;
igt_fixture() {
igt_require(gem_scheduler_enabled(i915));
@@ -365,16 +365,17 @@ int igt_main()
igt_device_get_pci_device(i915),
false);
- sysfs = igt_sysfs_open(i915);
- pin_rps(sysfs);
+ i915_for_each_gt(i915, sysfs_gt, gt)
+ pin_rps(sysfs_gt);
}
test_each_engine("dispatch", i915, e)
endless_dispatch(i915, e);
igt_fixture() {
- unpin_rps(sysfs);
- close(sysfs);
+ i915_for_each_gt(i915, sysfs_gt, gt)
+ unpin_rps(sysfs_gt);
+
intel_register_access_fini(&mmio);
}
}
--
2.45.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies
2026-04-07 10:52 [PATCH i-g-t v2] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies Krzysztof Niemiec
@ 2026-04-07 11:42 ` Janusz Krzysztofik
2026-04-09 11:46 ` Krzysztof Niemiec
2026-04-09 7:43 ` ✓ Xe.CI.BAT: success for tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies (rev2) Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Janusz Krzysztofik @ 2026-04-07 11:42 UTC (permalink / raw)
To: Krzysztof Niemiec, igt-dev
Cc: Andi Shyti, Krzysztof Karas, Sebastian Brzezinka
Hi Krzysztof,
On Tue, 2026-04-07 at 12:52 +0200, Krzysztof Niemiec wrote:
> The test alters the environment, specifically the gt frequencies, for
> its duration. Using the legacy interface however makes it impossible for
> the pre-test state to be restored due to its limitations in multi-gt
> systems. Use the per-gt interface instead to properly clean up.
While I think your solution may be correct, your description is not clear
enough for me. How is it possible for the legacy interface to work as
expected when altering the environment, but not ant longer when restoring
defaults?
Thanks,
Janusz
>
> Signed-off-by: Krzysztof Niemiec <krzysztof.niemiec@intel.com>
> ---
>
> v2:
> - Remove the redundant fd open from the i915_for_each_gt loop, as one
> is already created as part of the loop (Sebastian)
> - Remove extra newline (Krzysztof K)
>
> tests/intel/gem_exec_endless.c | 33 +++++++++++++++++----------------
> 1 file changed, 17 insertions(+), 16 deletions(-)
>
> diff --git a/tests/intel/gem_exec_endless.c b/tests/intel/gem_exec_endless.c
> index 7f35e985c..f3ed8556c 100644
> --- a/tests/intel/gem_exec_endless.c
> +++ b/tests/intel/gem_exec_endless.c
> @@ -316,28 +316,28 @@ static void endless_dispatch(int i915, const struct intel_execution_engine2 *e)
> for_each_if(gem_class_can_store_dword(i915, (e)->class)) \
> igt_dynamic_f("%s", (e)->name)
>
> -static void pin_rps(int sysfs)
> +static void pin_rps(int sysfs_gt)
> {
> unsigned int max;
>
> - if (igt_sysfs_scanf(sysfs, "gt_RP0_freq_mhz", "%u", &max) != 1)
> + if (igt_sysfs_scanf(sysfs_gt, "rps_RP0_freq_mhz", "%u", &max) != 1)
> return;
>
> - igt_sysfs_printf(sysfs, "gt_min_freq_mhz", "%u", max);
> - igt_sysfs_printf(sysfs, "gt_max_freq_mhz", "%u", max);
> - igt_sysfs_printf(sysfs, "gt_boost_freq_mhz", "%u", max);
> + igt_sysfs_printf(sysfs_gt, "rps_min_freq_mhz", "%u", max);
> + igt_sysfs_printf(sysfs_gt, "rps_max_freq_mhz", "%u", max);
> + igt_sysfs_printf(sysfs_gt, "rps_boost_freq_mhz", "%u", max);
> }
>
> -static void unpin_rps(int sysfs)
> +static void unpin_rps(int sysfs_gt)
> {
> unsigned int v;
>
> - if (igt_sysfs_scanf(sysfs, "gt_RPn_freq_mhz", "%u", &v) == 1)
> - igt_sysfs_printf(sysfs, "gt_min_freq_mhz", "%u", v);
> + if (igt_sysfs_scanf(sysfs_gt, "rps_RPn_freq_mhz", "%u", &v) == 1)
> + igt_sysfs_printf(sysfs_gt, "rps_min_freq_mhz", "%u", v);
>
> - if (igt_sysfs_scanf(sysfs, "gt_RP0_freq_mhz", "%u", &v) == 1) {
> - igt_sysfs_printf(sysfs, "gt_max_freq_mhz", "%u", v);
> - igt_sysfs_printf(sysfs, "gt_boost_freq_mhz", "%u", v);
> + if (igt_sysfs_scanf(sysfs_gt, "rps_RP0_freq_mhz", "%u", &v) == 1) {
> + igt_sysfs_printf(sysfs_gt, "rps_max_freq_mhz", "%u", v);
> + igt_sysfs_printf(sysfs_gt, "rps_boost_freq_mhz", "%u", v);
> }
> }
>
> @@ -355,7 +355,7 @@ int igt_main()
>
> igt_subtest_group() {
> struct intel_mmio_data mmio;
> - int sysfs;
> + int sysfs_gt, gt;
>
> igt_fixture() {
> igt_require(gem_scheduler_enabled(i915));
> @@ -365,16 +365,17 @@ int igt_main()
> igt_device_get_pci_device(i915),
> false);
>
> - sysfs = igt_sysfs_open(i915);
> - pin_rps(sysfs);
> + i915_for_each_gt(i915, sysfs_gt, gt)
> + pin_rps(sysfs_gt);
> }
>
> test_each_engine("dispatch", i915, e)
> endless_dispatch(i915, e);
>
> igt_fixture() {
> - unpin_rps(sysfs);
> - close(sysfs);
> + i915_for_each_gt(i915, sysfs_gt, gt)
> + unpin_rps(sysfs_gt);
> +
> intel_register_access_fini(&mmio);
> }
> }
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies (rev2)
2026-04-07 10:52 [PATCH i-g-t v2] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies Krzysztof Niemiec
2026-04-07 11:42 ` Janusz Krzysztofik
@ 2026-04-09 7:43 ` Patchwork
2026-04-09 7:56 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-09 7:43 UTC (permalink / raw)
To: Krzysztof Niemiec; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 810 bytes --]
== Series Details ==
Series: tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies (rev2)
URL : https://patchwork.freedesktop.org/series/164291/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8851_BAT -> XEIGTPW_14940_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8851 -> IGTPW_14940
IGTPW_14940: 14940
IGT_8851: 8851
xe-4860-5ee75b2816df74bfe606d4dfc061547d5cda4ebf: 5ee75b2816df74bfe606d4dfc061547d5cda4ebf
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/index.html
[-- Attachment #2: Type: text/html, Size: 1355 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies (rev2)
2026-04-07 10:52 [PATCH i-g-t v2] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies Krzysztof Niemiec
2026-04-07 11:42 ` Janusz Krzysztofik
2026-04-09 7:43 ` ✓ Xe.CI.BAT: success for tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies (rev2) Patchwork
@ 2026-04-09 7:56 ` Patchwork
2026-04-09 8:52 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-09 19:54 ` ✗ i915.CI.Full: " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-09 7:56 UTC (permalink / raw)
To: Krzysztof Niemiec; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2894 bytes --]
== Series Details ==
Series: tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies (rev2)
URL : https://patchwork.freedesktop.org/series/164291/
State : success
== Summary ==
CI Bug Log - changes from IGT_8851 -> IGTPW_14940
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14940 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-glk-j4005: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/fi-glk-j4005/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-glk-j4005: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@i915_selftest@live:
- bat-dg2-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8851/bat-dg2-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8851/bat-arls-5/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/bat-arls-5/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@prime_vgem@basic-gtt:
- fi-glk-j4005: [ABORT][7] ([i915#15773]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8851/fi-glk-j4005/igt@prime_vgem@basic-gtt.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/fi-glk-j4005/igt@prime_vgem@basic-gtt.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#15773]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15773
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8851 -> IGTPW_14940
* Linux: CI_DRM_18296 -> CI_DRM_18297
CI-20190529: 20190529
CI_DRM_18296: 994d34e9b0e78a8c9f5768d55529bdf194654793 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18297: e105f427a4533d9a6d4597597da78484313c9b61 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14940: 14940
IGT_8851: 8851
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/index.html
[-- Attachment #2: Type: text/html, Size: 3693 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies (rev2)
2026-04-07 10:52 [PATCH i-g-t v2] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies Krzysztof Niemiec
` (2 preceding siblings ...)
2026-04-09 7:56 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-04-09 8:52 ` Patchwork
2026-04-09 19:54 ` ✗ i915.CI.Full: " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-09 8:52 UTC (permalink / raw)
To: Krzysztof Niemiec; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 22251 bytes --]
== Series Details ==
Series: tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies (rev2)
URL : https://patchwork.freedesktop.org/series/164291/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8851_FULL -> XEIGTPW_14940_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14940_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14940_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_14940_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_system_allocator@fault-threads-benchmark:
- shard-bmg: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-3/igt@xe_exec_system_allocator@fault-threads-benchmark.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-3/igt@xe_exec_system_allocator@fault-threads-benchmark.html
Known issues
------------
Here are the changes found in XEIGTPW_14940_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#7059] / [Intel XE#7085]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-10/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-bmg: [PASS][6] -> [SKIP][7] ([Intel XE#7621])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-6/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-5/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#367] / [Intel XE#7354])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-9/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#3432])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +4 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_hpd@dp-hpd-after-hibernate:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2252]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html
* igt@kms_color@degamma:
- shard-bmg: [PASS][12] -> [ABORT][13] ([Intel XE#5545] / [Intel XE#6652] / [Intel XE#7200]) +1 other test abort
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-3/igt@kms_color@degamma.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-2/igt@kms_color@degamma.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#6974])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-3/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][15] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-10/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][16] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-1/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2320]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-9/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2286] / [Intel XE#6035])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#7178] / [Intel XE#7351])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#4141]) +6 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2311]) +11 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2313]) +7 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#7061] / [Intel XE#7356])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#1503])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-2/igt@kms_hdr@invalid-hdr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7591])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7283])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#5021] / [Intel XE#7377])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][30] -> [FAIL][31] ([Intel XE#7340])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#1489]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2387] / [Intel XE#7429])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@psr2-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-7/igt@kms_psr@psr2-no-drrs.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#1406] / [Intel XE#2414])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_vrr@flipline:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#1499])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-5/igt@kms_vrr@flipline.html
* igt@xe_eudebug@basic-vms:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7636]) +5 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-3/igt@xe_eudebug@basic-vms.html
* igt@xe_exec_basic@multigpu-no-exec-null:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-10/igt@xe_exec_basic@multigpu-no-exec-null.html
* igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7136]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-7/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#6874]) +12 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-1/igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate.html
* igt@xe_exec_threads@threads-multi-queue-cm-rebind:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7138])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-cm-rebind.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: [PASS][42] -> [ABORT][43] ([Intel XE#7578])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-8/igt@xe_mmap@small-bar.html
* igt@xe_multigpu_svm@mgpu-latency-copy-basic:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#6964])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-3/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html
* igt@xe_pat@xa-app-transient-media-off:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7590])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-2/igt@xe_pat@xa-app-transient-media-off.html
* igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-7/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
* igt@xe_query@multigpu-query-oa-units:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#944])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-6/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
- shard-bmg: [PASS][49] -> [FAIL][50] ([Intel XE#5937]) +1 other test fail
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-10/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-9/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [PASS][51] -> [FAIL][52] ([Intel XE#6569])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-3/igt@xe_sriov_flr@flr-vfs-parallel.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-8/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-transition-nonblocking:
- shard-bmg: [INCOMPLETE][53] -> [PASS][54] +1 other test pass
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-2/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-10/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [FAIL][55] -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][57] ([Intel XE#7340]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-bmg: [ABORT][59] ([Intel XE#7200]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][61] ([Intel XE#4459]) -> [PASS][62] +1 other test pass
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@max-min@pipe-a-edp-1:
- shard-lnl: [FAIL][63] ([Intel XE#4227]) -> [PASS][64] +1 other test pass
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-lnl-4/igt@kms_vrr@max-min@pipe-a-edp-1.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-lnl-1/igt@kms_vrr@max-min@pipe-a-edp-1.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [FAIL][65] ([Intel XE#6569]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-8/igt@xe_sriov_flr@flr-vf1-clear.html
#### Warnings ####
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][67] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][68] ([Intel XE#2509] / [Intel XE#7437])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[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#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[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#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[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#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#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[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#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7200]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7200
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8851 -> IGTPW_14940
IGTPW_14940: 14940
IGT_8851: 8851
xe-4860-5ee75b2816df74bfe606d4dfc061547d5cda4ebf: 5ee75b2816df74bfe606d4dfc061547d5cda4ebf
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14940/index.html
[-- Attachment #2: Type: text/html, Size: 24053 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies
2026-04-07 11:42 ` Janusz Krzysztofik
@ 2026-04-09 11:46 ` Krzysztof Niemiec
2026-04-09 12:28 ` Janusz Krzysztofik
0 siblings, 1 reply; 9+ messages in thread
From: Krzysztof Niemiec @ 2026-04-09 11:46 UTC (permalink / raw)
To: Janusz Krzysztofik
Cc: igt-dev, Andi Shyti, Krzysztof Karas, Sebastian Brzezinka
On 2026-04-07 at 13:42:20 GMT, Janusz Krzysztofik wrote:
> Hi Krzysztof,
>
> On Tue, 2026-04-07 at 12:52 +0200, Krzysztof Niemiec wrote:
> > The test alters the environment, specifically the gt frequencies, for
> > its duration. Using the legacy interface however makes it impossible for
> > the pre-test state to be restored due to its limitations in multi-gt
> > systems. Use the per-gt interface instead to properly clean up.
>
> While I think your solution may be correct, your description is not clear
> enough for me. How is it possible for the legacy interface to work as
> expected when altering the environment, but not ant longer when restoring
> defaults?
>
The legacy interface can only ever emit a singular value to the GTs (the
same value to all at once), while the per-gt interface allows granular
control.
So, for example, say we have two GTs - gt0 and gt1. You can set the
frequency values (min_freq, max_freq, boost_freq are the ones set by the
test) to those that fall in the range in between RPn and RP0. These
values can be different for different GTs, these are from the test box
I've been testing the patch on:
root@box:/sys/class/drm/card1# cat gt/gt0/rps_RPn_freq_mhz
800
root@box:/sys/class/drm/card1# cat gt/gt1/rps_RPn_freq_mhz
100
root@box:/sys/class/drm/card1# cat gt/gt0/rps_RP0_freq_mhz
2200
root@box:/sys/class/drm/card1# cat gt/gt1/rps_RP0_freq_mhz
1300
So gt0 accepts values from the range 800-2200, but gt1 accepts values
from the range 100-1300.
However, the legacy interface reports only one set of these values:
root@box:/sys/class/drm/card1# cat gt_RPn_freq_mhz
800
root@box:/sys/class/drm/card1# cat gt_RP0_freq_mhz
2200
Now, without the patch, the test looks at the legacy interface's RP0 and
RPn value to alter the environment, showing a range of 800-2200. The
test sets all frequencies to max (so 2200, as read from the legacy
interface). This actually fails silently for gt1 in this example:
root@box:/sys/class/drm/card1# echo 1300 > gt_min_freq_mhz
root@box:/sys/class/drm/card1# echo 2200 > gt_min_freq_mhz
-bash: echo: write error: Invalid argument
(the failure is silent because the test doesn't check for a return value).
gt0 is set properly, gt1 stays at 100. This is because we cannot have
the information for gt1's range of allowed values, since the legacy
interface reports the max of these two. Changing it to the minimum of
the two values will prevent a failure in gt1, but then gt0 will be set
to 1300 while it can be still raised to 2200, so we're not actually
setting the maximum value for it, which the test is trying to do. The
per-gt interface just treats both GTs independently, reading the correct
range for all of them, so this issue doesn't arise.
Then, after the test is finished, the test tries to set the values back
to what RP0 and RPn report. Let's look at the min_freq because this is a
cause for problems in further tests that expect a restored environment.
After test init, as I described earlier, the values for min_freq are
2200 and 100 for gt0 and gt1 respectively. During cleanup, the test reads
RPn from the legacy interface, which is 800, and then sets the min_freq
(using the legacy interface too) to this value. Now, since 800 is both in
the 100-1300 and the 800-2200 range, this will succeed; after this values
for min_freq are 800 and 800 for gt0 and gt1. This is a mismatch with
the original values being 800 and 100 for gt0 and gt1.
Note that reporting 100 from the legacy interface instead won't fix the
problem either, as then min_freq for gt1 would be correctly set to 100,
but setting it for gt0 would fail (100 is not in 800-2200), so the test
would leave the values at 2200 and 100, respectively, still not
restoring the environment properly. This is just impossible to
accomplish using the legacy interface, because it can only ever report a
single value for any of the attributes.
To explain this in detail could be unneccesarily verbose for a git log,
but if you think it's needed, I can include it.
Thanks
Krzysztof
> Thanks,
> Janusz
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies
2026-04-09 11:46 ` Krzysztof Niemiec
@ 2026-04-09 12:28 ` Janusz Krzysztofik
2026-04-09 14:01 ` Krzysztof Niemiec
0 siblings, 1 reply; 9+ messages in thread
From: Janusz Krzysztofik @ 2026-04-09 12:28 UTC (permalink / raw)
To: Krzysztof Niemiec
Cc: igt-dev, Andi Shyti, Krzysztof Karas, Sebastian Brzezinka
Hi Krzysztof,
Thanks for explanation. Based on that ...
On Thu, 2026-04-09 at 13:46 +0200, Krzysztof Niemiec wrote:
> On 2026-04-07 at 13:42:20 GMT, Janusz Krzysztofik wrote:
> > Hi Krzysztof,
> >
> > On Tue, 2026-04-07 at 12:52 +0200, Krzysztof Niemiec wrote:
> > > The test alters the environment, specifically the gt frequencies, for
> > > its duration. Using the legacy interface however makes it impossible for
> > > the pre-test state to be restored due to its limitations in multi-gt
> > > systems.
... because each gt may accept values from a different range and default to
a different value that we may want to restore.
Or something similar. That won't be too verbose, I believe.
Thanks,
Janusz
> > > Use the per-gt interface instead to properly clean up.
> >
> > While I think your solution may be correct, your description is not clear
> > enough for me. How is it possible for the legacy interface to work as
> > expected when altering the environment, but not ant longer when restoring
> > defaults?
> >
>
> The legacy interface can only ever emit a singular value to the GTs (the
> same value to all at once), while the per-gt interface allows granular
> control.
>
> So, for example, say we have two GTs - gt0 and gt1. You can set the
> frequency values (min_freq, max_freq, boost_freq are the ones set by the
> test) to those that fall in the range in between RPn and RP0. These
> values can be different for different GTs, these are from the test box
> I've been testing the patch on:
>
> root@box:/sys/class/drm/card1# cat gt/gt0/rps_RPn_freq_mhz
> 800
> root@box:/sys/class/drm/card1# cat gt/gt1/rps_RPn_freq_mhz
> 100
>
> root@box:/sys/class/drm/card1# cat gt/gt0/rps_RP0_freq_mhz
> 2200
> root@box:/sys/class/drm/card1# cat gt/gt1/rps_RP0_freq_mhz
> 1300
>
> So gt0 accepts values from the range 800-2200, but gt1 accepts values
> from the range 100-1300.
>
> However, the legacy interface reports only one set of these values:
>
> root@box:/sys/class/drm/card1# cat gt_RPn_freq_mhz
> 800
> root@box:/sys/class/drm/card1# cat gt_RP0_freq_mhz
> 2200
>
> Now, without the patch, the test looks at the legacy interface's RP0 and
> RPn value to alter the environment, showing a range of 800-2200. The
> test sets all frequencies to max (so 2200, as read from the legacy
> interface). This actually fails silently for gt1 in this example:
>
> root@box:/sys/class/drm/card1# echo 1300 > gt_min_freq_mhz
> root@box:/sys/class/drm/card1# echo 2200 > gt_min_freq_mhz
> -bash: echo: write error: Invalid argument
>
> (the failure is silent because the test doesn't check for a return value).
> gt0 is set properly, gt1 stays at 100. This is because we cannot have
> the information for gt1's range of allowed values, since the legacy
> interface reports the max of these two. Changing it to the minimum of
> the two values will prevent a failure in gt1, but then gt0 will be set
> to 1300 while it can be still raised to 2200, so we're not actually
> setting the maximum value for it, which the test is trying to do. The
> per-gt interface just treats both GTs independently, reading the correct
> range for all of them, so this issue doesn't arise.
>
> Then, after the test is finished, the test tries to set the values back
> to what RP0 and RPn report. Let's look at the min_freq because this is a
> cause for problems in further tests that expect a restored environment.
>
> After test init, as I described earlier, the values for min_freq are
> 2200 and 100 for gt0 and gt1 respectively. During cleanup, the test reads
> RPn from the legacy interface, which is 800, and then sets the min_freq
> (using the legacy interface too) to this value. Now, since 800 is both in
> the 100-1300 and the 800-2200 range, this will succeed; after this values
> for min_freq are 800 and 800 for gt0 and gt1. This is a mismatch with
> the original values being 800 and 100 for gt0 and gt1.
>
> Note that reporting 100 from the legacy interface instead won't fix the
> problem either, as then min_freq for gt1 would be correctly set to 100,
> but setting it for gt0 would fail (100 is not in 800-2200), so the test
> would leave the values at 2200 and 100, respectively, still not
> restoring the environment properly. This is just impossible to
> accomplish using the legacy interface, because it can only ever report a
> single value for any of the attributes.
>
> To explain this in detail could be unneccesarily verbose for a git log,
> but if you think it's needed, I can include it.
>
> Thanks
> Krzysztof
>
> > Thanks,
> > Janusz
> >
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies
2026-04-09 12:28 ` Janusz Krzysztofik
@ 2026-04-09 14:01 ` Krzysztof Niemiec
0 siblings, 0 replies; 9+ messages in thread
From: Krzysztof Niemiec @ 2026-04-09 14:01 UTC (permalink / raw)
To: Janusz Krzysztofik
Cc: igt-dev, Andi Shyti, Krzysztof Karas, Sebastian Brzezinka
On 2026-04-09 at 14:28:46 GMT, Janusz Krzysztofik wrote:
> Hi Krzysztof,
>
> Thanks for explanation. Based on that ...
>
> On Thu, 2026-04-09 at 13:46 +0200, Krzysztof Niemiec wrote:
> > On 2026-04-07 at 13:42:20 GMT, Janusz Krzysztofik wrote:
> > > Hi Krzysztof,
> > >
> > > On Tue, 2026-04-07 at 12:52 +0200, Krzysztof Niemiec wrote:
> > > > The test alters the environment, specifically the gt frequencies, for
> > > > its duration. Using the legacy interface however makes it impossible for
> > > > the pre-test state to be restored due to its limitations in multi-gt
> > > > systems.
>
> ... because each gt may accept values from a different range and default to
> a different value that we may want to restore.
>
> Or something similar. That won't be too verbose, I believe.
That will work of course, I tried to overcomplicate this for no reason.
Thanks
Krzysztof
>
> Thanks,
> Janusz
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies (rev2)
2026-04-07 10:52 [PATCH i-g-t v2] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies Krzysztof Niemiec
` (3 preceding siblings ...)
2026-04-09 8:52 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-09 19:54 ` Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-09 19:54 UTC (permalink / raw)
To: Krzysztof Niemiec; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 139546 bytes --]
== Series Details ==
Series: tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies (rev2)
URL : https://patchwork.freedesktop.org/series/164291/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18297_full -> IGTPW_14940_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14940_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14940_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_14940/index.html
Participating hosts (11 -> 10)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14940_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_big@single:
- shard-mtlp: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-7/igt@gem_exec_big@single.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-6/igt@gem_exec_big@single.html
* igt@kms_plane_cursor@viewport:
- shard-mtlp: [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-8/igt@kms_plane_cursor@viewport.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-4/igt@kms_plane_cursor@viewport.html
Known issues
------------
Here are the changes found in IGTPW_14940_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-tglu-1: NOTRUN -> [SKIP][5] ([i915#6230])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@api_intel_bb@crc32.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-12/igt@device_reset@cold-reset-bound.html
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-3/igt@device_reset@cold-reset-bound.html
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-5/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-6/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#11078]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-4/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_buddy@drm_buddy:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#15678])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-2/igt@drm_buddy@drm_buddy.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#7697])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-12/igt@gem_basic@multigpu-create-close.html
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-4/igt@gem_basic@multigpu-create-close.html
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-3/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-5/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#9323]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-3/igt@gem_ccs@suspend-resume.html
- shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#9323]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][18] ([i915#12392] / [i915#13356])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-3/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#8562])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-snb4/igt@gem_ctx_persistence@file.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-1/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@gem_ctx_sseu@invalid-sseu.html
- shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][25] ([i915#13390])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk5/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@reset-stress@blt:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#15314])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-8/igt@gem_eio@reset-stress@blt.html
* igt@gem_eio@reset-stress@bsd:
- shard-snb: NOTRUN -> [FAIL][27] ([i915#8898]) +1 other test fail
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-snb4/igt@gem_eio@reset-stress@bsd.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#4525])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-8/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#6344])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fence@concurrent:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-8/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-16/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-5/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-4/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#14544] / [i915#3281])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281]) +4 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-15/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3281]) +5 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-7/igt@gem_exec_reloc@basic-write-read-active.html
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#3281]) +7 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#4812]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-14/igt@gem_exec_schedule@semaphore-power.html
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-8/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s0:
- shard-rkl: [PASS][43] -> [INCOMPLETE][44] ([i915#13356]) +1 other test incomplete
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-2/igt@gem_exec_suspend@basic-s0.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4860])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu-1: NOTRUN -> [SKIP][46] ([i915#2190])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4613]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-glk: NOTRUN -> [SKIP][48] ([i915#4613]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk5/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#4613]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu: NOTRUN -> [SKIP][50] ([i915#4613]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4613])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-7/igt@gem_lmem_swapping@random.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#8289])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-5/igt@gem_media_fill@media-fill.html
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#8289])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-6/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4083]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-14/igt@gem_mmap_wc@read.html
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4083]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-2/igt@gem_mmap_wc@read.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-5/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#3282]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pwrite@basic-random:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3282]) +7 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-7/igt@gem_pwrite@basic-random.html
* igt@gem_pwrite_snooped:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-8/igt@gem_pwrite_snooped.html
* igt@gem_pxp@create-valid-protected-context:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4270]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-6/igt@gem_pxp@create-valid-protected-context.html
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4270])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-12/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-rkl: [PASS][62] -> [ABORT][63] ([i915#15131])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3282]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-6/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#5190] / [i915#8428]) +6 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-1/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8428]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-1/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4079])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-1/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_tiled_pread_pwrite:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#14544] / [i915#3282]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#3297])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#3297])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-7/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-13/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3297])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-4/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#3282] / [i915#3297])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#3297])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-10/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297] / [i915#4958])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-8/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4958])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-19/igt@gem_userptr_blits@sd-probe.html
* igt@gem_workarounds@suspend-resume:
- shard-rkl: NOTRUN -> [INCOMPLETE][77] ([i915#13356]) +1 other test incomplete
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@gem_workarounds@suspend-resume.html
- shard-glk11: NOTRUN -> [INCOMPLETE][78] ([i915#13356] / [i915#14586])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk11/igt@gem_workarounds@suspend-resume.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#2856]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-6/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#2527]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-3/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#2527] / [i915#2856]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-10/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@secure-batches:
- shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#2527] / [i915#2856]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@gen9_exec_parse@secure-batches.html
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#2527]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-17/igt@gen9_exec_parse@secure-batches.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#2856]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-7/igt@gen9_exec_parse@secure-batches.html
* igt@i915_drm_fdinfo@busy-check-all:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#11527]) +5 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-18/igt@i915_drm_fdinfo@busy-check-all.html
* igt@i915_drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#11527]) +6 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-5/igt@i915_drm_fdinfo@busy-check-all@ccs0.html
* igt@i915_drm_fdinfo@busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#11527]) +7 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@i915_drm_fdinfo@busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@virtual-busy-all:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#14118]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-1/igt@i915_drm_fdinfo@virtual-busy-all.html
* igt@i915_drm_fdinfo@virtual-busy-idle:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#14118]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-16/igt@i915_drm_fdinfo@virtual-busy-idle.html
* igt@i915_drm_fdinfo@virtual-busy-idle-all:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#14118]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#8399]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html
- shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#8399])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#8399])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-8/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#14498])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rps@basic-api:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#11681] / [i915#6621])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-8/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#11681])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park.html
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#11681])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-13/igt@i915_pm_rps@thresholds-idle-park.html
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#11681])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][99] -> [SKIP][100] ([i915#7984])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-6/igt@i915_power@sanity.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-8/igt@i915_power@sanity.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-glk11: NOTRUN -> [INCOMPLETE][101] ([i915#4817])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk11/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@forcewake:
- shard-glk10: NOTRUN -> [INCOMPLETE][102] ([i915#4817])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk10/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#7707])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#5190]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#5190])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#12454] / [i915#12712])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#12454] / [i915#12712])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#1769] / [i915#3555])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-mtlp: [PASS][109] -> [FAIL][110] ([i915#5956]) +1 other test fail
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [PASS][111] -> [FAIL][112] ([i915#5956]) +3 other tests fail
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5286]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#5286]) +6 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#5286])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#5286]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#5286]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#3638]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#3638]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-19/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#3828])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#14544] / [i915#3828])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#3828])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-15/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#3828])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#3828])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][125] +10 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5190]) +7 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-1/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg1: [PASS][127] -> [DMESG-WARN][128] ([i915#4423])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-16/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-13/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-17/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][130] +28 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-19/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6187])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#6095]) +191 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#14098] / [i915#6095]) +59 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-3/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#14544] / [i915#6095]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#14098] / [i915#14544] / [i915#6095])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][136] +472 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#6095]) +27 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#12313]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#6095]) +95 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][140] ([i915#14694] / [i915#15582])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#6095]) +44 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#6095]) +59 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-rkl: [PASS][143] -> [INCOMPLETE][144] ([i915#15582])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][145] ([i915#15582])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][146] ([i915#15582]) +1 other test incomplete
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk5/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][147] ([i915#6095]) +44 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/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-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#12313]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#6095]) +85 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#3742]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-7/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][152] +13 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-8/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +7 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-7/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +5 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-7/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-16/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +5 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +8 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#14544] / [i915#7828])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_color@deep-color:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#12655] / [i915#3555])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@kms_color@deep-color.html
* igt@kms_color_pipeline@plane-lut1d:
- shard-snb: NOTRUN -> [SKIP][161] +135 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-snb5/igt@kms_color_pipeline@plane-lut1d.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#15330])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
- shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#15330]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#14544] / [i915#15330])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#15330] / [i915#3116] / [i915#3299])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-9/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#15865])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#15865])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-2/igt@kms_content_protection@lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#15865])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-16/igt@kms_content_protection@lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#15865])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-4/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#15865]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-4/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#15865]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: NOTRUN -> [FAIL][172] ([i915#13566]) +2 other tests fail
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#3555]) +3 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#3555]) +5 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][175] -> [FAIL][176] ([i915#13566]) +3 other tests fail
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-tglu-2/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-2/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#13049])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-3/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#13049])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-3/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#13049])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#13049]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#13049])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-14/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#13049])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#3555]) +4 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#3555]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8814])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#13046] / [i915#5354]) +6 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][188] +18 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#9809]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#4103])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#14544])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][192] ([i915#15804])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#4103] / [i915#4213])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#4103] / [i915#4213])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#9723])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#9723])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#13691])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#3804])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev@basic:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#1257])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@kms_dp_aux_dev@basic.html
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#1257])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-3/igt@kms_dp_aux_dev@basic.html
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#1257])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-16/igt@kms_dp_aux_dev@basic.html
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#1257])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-4/igt@kms_dp_aux_dev@basic.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#13748] / [i915#14544])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-basic:
- shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#3840])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#3840])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#3840])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3840])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@kms_dsc@dsc-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#3840])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-16/igt@kms_dsc@dsc-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#3840])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-2/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-8/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#3840]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#3840] / [i915#9053])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][213] ([i915#9878])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk10/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#1839])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-7/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#9337])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#3637] / [i915#9934]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#9934]) +7 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-5/igt@kms_flip@2x-flip-vs-panning.html
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#9934]) +8 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][219] ([i915#12745] / [i915#4839])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][220] ([i915#12745])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk6/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#9934]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-17/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#3637] / [i915#9934]) +8 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-2/igt@kms_flip@2x-nonexisting-fb.html
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3637] / [i915#9934]) +3 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-7/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#14544] / [i915#9934])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [PASS][225] -> [INCOMPLETE][226] ([i915#6113]) +1 other test incomplete
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-4/igt@kms_flip@flip-vs-suspend.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#15643]) +4 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#15643]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#15643]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#15643])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#15643]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#15643]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#15643] / [i915#5190])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#8708]) +4 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#1825]) +38 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#1825]) +19 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#5354]) +25 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#15104])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#14544] / [i915#15102])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#15102] / [i915#3458]) +8 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#8708]) +11 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
- shard-tglu-1: NOTRUN -> [SKIP][243] +44 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#5439])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#9766])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#15104]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#15102]) +2 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#15104]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#15102])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#15102]) +13 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#15102] / [i915#3023]) +24 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#15102] / [i915#3458]) +11 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#15102]) +25 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][254] +50 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-glk10: NOTRUN -> [SKIP][255] +90 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#14544] / [i915#1825])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#8708]) +8 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-4k:
- shard-mtlp: [PASS][258] -> [SKIP][259] ([i915#15725])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-7/igt@kms_hdmi_inject@inject-4k.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#8228]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-6/igt@kms_hdr@bpc-switch.html
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8228])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-15/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@static-swap:
- shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8228]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8228]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-2/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#15459])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-3/igt@kms_joiner@basic-force-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#15459])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-5/igt@kms_joiner@basic-force-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#15459])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-6/igt@kms_joiner@basic-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#15459])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-8/igt@kms_joiner@basic-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#15459])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-12/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#13688])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#14544] / [i915#15458])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#15458])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#15458]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#15458])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-19/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#15458])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-9/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#15458])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#15638] / [i915#15722])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_lease@lease-invalid-plane:
- shard-dg1: NOTRUN -> [DMESG-WARN][277] ([i915#4423])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-18/igt@kms_lease@lease-invalid-plane.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#6301])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-6/igt@kms_panel_fitting@atomic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#6301])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-13/igt@kms_panel_fitting@atomic-fastset.html
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#6301])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-9/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#14712])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#13705])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#13705])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-3/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#15709]) +4 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#14544] / [i915#15709])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#15709]) +4 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
- shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#15709]) +3 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#15709]) +4 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-14/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#15709]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-2/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#15709]) +2 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-10/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#15608]) +3 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-9/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html
* igt@kms_plane_lowres@tiling-x:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#11614] / [i915#3582]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-6/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-6/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#13958] / [i915#14544])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][295] ([i915#15329]) +9 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#15329] / [i915#3555])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#15329]) +3 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#15329] / [i915#3555] / [i915#6953])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#15329]) +3 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#5354])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-3/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#9812])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-4/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#9812]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#9685])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#15739])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#14544] / [i915#15073])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#15073])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-18/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][307] -> [SKIP][308] ([i915#15073])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
- shard-dg1: [PASS][309] -> [SKIP][310] ([i915#15073])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-15/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@fences-dpms:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#4077]) +11 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-5/igt@kms_pm_rpm@fences-dpms.html
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#4077]) +3 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-19/igt@kms_pm_rpm@fences-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][313] ([i915#4077]) +4 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-6/igt@kms_pm_rpm@fences-dpms.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#15403])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: NOTRUN -> [INCOMPLETE][315] ([i915#10553])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk2/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#6524] / [i915#6805]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#6524])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-14/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#6524])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-8/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][319] ([i915#11520]) +9 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#11520]) +4 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-glk10: NOTRUN -> [SKIP][321] ([i915#11520]) +2 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-glk11: NOTRUN -> [SKIP][322] ([i915#11520])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk11/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][323] ([i915#9808])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#12316]) +3 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][325] ([i915#11520]) +4 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-snb5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][326] ([i915#11520]) +5 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-15/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#11520]) +7 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][328] ([i915#11520]) +11 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][329] ([i915#11520]) +18 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk5/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][330] ([i915#4348]) +1 other test skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#9683]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-7/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#9683])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-3/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#9683])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-16/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][334] ([i915#9683])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-4/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#9732]) +15 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-2/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#1072] / [i915#14544] / [i915#9732])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#9732]) +12 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html
- shard-dg1: NOTRUN -> [SKIP][338] ([i915#1072] / [i915#9732]) +10 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-17/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-mtlp: NOTRUN -> [SKIP][339] ([i915#9688]) +9 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-3/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#1072] / [i915#9732]) +21 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-4/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][341] ([i915#1072] / [i915#9732]) +15 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-8/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr@psr2-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][342] ([i915#4077] / [i915#9688]) +1 other test skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-7/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#9685])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][344] ([i915#15500])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk: NOTRUN -> [INCOMPLETE][345] ([i915#15492])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk5/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][346] ([i915#5289])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#5289])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#14544] / [i915#3555])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][349] ([i915#13179]) +1 other test abort
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-4/igt@kms_selftest@drm_framebuffer.html
- shard-glk10: NOTRUN -> [ABORT][350] ([i915#13179]) +1 other test abort
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk10/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic:
- shard-snb: NOTRUN -> [FAIL][351] ([i915#15106]) +6 other tests fail
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-snb4/igt@kms_setmode@basic.html
* igt@kms_vrr@flip-basic:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#15243] / [i915#3555])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf:
- shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#11920])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][354] ([i915#9906])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-6/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][355] ([i915#9906])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][356] ([i915#2436])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-7/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start:
- shard-mtlp: NOTRUN -> [FAIL][357] ([i915#4349]) +2 other tests fail
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-5/igt@perf_pmu@busy-double-start.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][358] ([i915#4349]) +4 other tests fail
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [ABORT][359] ([i915#15778])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk3/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: [PASS][360] -> [INCOMPLETE][361] ([i915#13356] / [i915#14242])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-glk3/igt@perf_pmu@rc6-suspend.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk1/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][362] ([i915#3708])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-13/igt@prime_vgem@basic-fence-flip.html
- shard-dg2: NOTRUN -> [SKIP][363] ([i915#3708])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-1/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][364] ([i915#3291] / [i915#3708]) +1 other test skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][365] ([i915#3708])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random:
- shard-tglu-1: NOTRUN -> [FAIL][366] ([i915#12910]) +9 other tests fail
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-glk11: NOTRUN -> [SKIP][367] +31 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk11/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-dg1: NOTRUN -> [SKIP][368] ([i915#9917])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-15/igt@sriov_basic@enable-vfs-bind-unbind-each.html
#### Possible fixes ####
* igt@api_intel_bb@render@render-y-1024:
- shard-dg1: [ABORT][369] -> [PASS][370] +1 other test pass
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-15/igt@api_intel_bb@render@render-y-1024.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-18/igt@api_intel_bb@render@render-y-1024.html
* igt@gem_create@create-clear:
- shard-tglu: [INCOMPLETE][371] -> [PASS][372]
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-tglu-7/igt@gem_create@create-clear.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-10/igt@gem_create@create-clear.html
* igt@gem_create@create-clear@smem0:
- shard-rkl: [INCOMPLETE][373] -> [PASS][374] +1 other test pass
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-7/igt@gem_create@create-clear@smem0.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-7/igt@gem_create@create-clear@smem0.html
- shard-tglu: [INCOMPLETE][375] ([i915#5493]) -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-tglu-7/igt@gem_create@create-clear@smem0.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-10/igt@gem_create@create-clear@smem0.html
* igt@gem_eio@wait-wedge-1us:
- shard-mtlp: [ABORT][377] ([i915#15511]) -> [PASS][378]
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-2/igt@gem_eio@wait-wedge-1us.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-7/igt@gem_eio@wait-wedge-1us.html
* igt@gem_exec_big@single:
- shard-tglu: [FAIL][379] ([i915#15816]) -> [PASS][380]
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-tglu-7/igt@gem_exec_big@single.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-5/igt@gem_exec_big@single.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][381] ([i915#13356]) -> [PASS][382] +2 other tests pass
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s3:
- shard-glk: [INCOMPLETE][383] ([i915#13196] / [i915#13356]) -> [PASS][384] +1 other test pass
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-glk6/igt@gem_exec_suspend@basic-s3.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk2/igt@gem_exec_suspend@basic-s3.html
- shard-rkl: [INCOMPLETE][385] ([i915#13356]) -> [PASS][386] +1 other test pass
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@gem_exec_suspend@basic-s3.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@gem_exec_suspend@basic-s3.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: [FAIL][387] -> [PASS][388] +1 other test pass
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@gem_exec_suspend@basic-s4-devices.html
- shard-mtlp: [FAIL][389] ([i915#15762]) -> [PASS][390] +1 other test pass
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-7/igt@gem_exec_suspend@basic-s4-devices.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-7/igt@gem_exec_suspend@basic-s4-devices.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [FAIL][391] ([i915#5956]) -> [PASS][392] +1 other test pass
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][393] ([i915#15582]) -> [PASS][394]
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_color@deep-color:
- shard-rkl: [SKIP][395] ([i915#12655] / [i915#3555]) -> [PASS][396]
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-2/igt@kms_color@deep-color.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_color@deep-color.html
* igt@kms_cursor_crc@cursor-offscreen-256x256:
- shard-dg1: [DMESG-WARN][397] ([i915#4423]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-256x256.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-256x256.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [FAIL][399] ([i915#13566]) -> [PASS][400] +3 other tests pass
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: [FAIL][401] ([i915#13566]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
- shard-rkl: [INCOMPLETE][403] ([i915#12358] / [i915#14152]) -> [PASS][404] +1 other test pass
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-rkl: [FAIL][405] ([i915#14600]) -> [PASS][406]
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
- shard-mtlp: [FAIL][407] ([i915#14600]) -> [PASS][408] +1 other test pass
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-rkl: [INCOMPLETE][409] ([i915#6113]) -> [PASS][410]
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_flip@flip-vs-suspend-interruptible.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg1: [ABORT][411] ([i915#4423]) -> [PASS][412]
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-13/igt@kms_force_connector_basic@prune-stale-modes.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-15/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][413] ([i915#15073]) -> [PASS][414] +1 other test pass
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg1: [SKIP][415] ([i915#15073]) -> [PASS][416] +1 other test pass
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: [SKIP][417] ([i915#8411]) -> [SKIP][418] ([i915#14544] / [i915#8411]) +1 other test skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-5/igt@api_intel_bb@blit-reloc-keep-cache.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: [SKIP][419] ([i915#14544] / [i915#6230]) -> [SKIP][420] ([i915#6230])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@api_intel_bb@crc32.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@api_intel_bb@crc32.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: [SKIP][421] ([i915#14544] / [i915#6335]) -> [SKIP][422] ([i915#6335])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-8/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: [SKIP][423] ([i915#4525]) -> [SKIP][424] ([i915#14544] / [i915#4525])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@gem_exec_balancer@parallel-bb-first.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: [SKIP][425] ([i915#14544] / [i915#4525]) -> [SKIP][426] ([i915#4525])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: [SKIP][427] ([i915#3281]) -> [SKIP][428] ([i915#14544] / [i915#3281]) +3 other tests skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: [SKIP][429] ([i915#14544] / [i915#3281]) -> [SKIP][430] ([i915#3281]) +2 other tests skip
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-rkl: [SKIP][431] ([i915#4613]) -> [SKIP][432] ([i915#14544] / [i915#4613]) +1 other test skip
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: [SKIP][433] ([i915#14544] / [i915#4613]) -> [SKIP][434] ([i915#4613])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@gem_lmem_swapping@verify.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-7/igt@gem_lmem_swapping@verify.html
* igt@gem_pread@snoop:
- shard-rkl: [SKIP][435] ([i915#3282]) -> [SKIP][436] ([i915#14544] / [i915#3282]) +1 other test skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-8/igt@gem_pread@snoop.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@gem_pread@snoop.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: [SKIP][437] ([i915#13717]) -> [SKIP][438] ([i915#13717] / [i915#14544])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-buffer.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: [SKIP][439] ([i915#14544] / [i915#3297]) -> [SKIP][440] ([i915#3297])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: [SKIP][441] ([i915#14544] / [i915#3297] / [i915#3323]) -> [SKIP][442] ([i915#3297] / [i915#3323])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-7/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: [SKIP][443] ([i915#14544] / [i915#2527]) -> [SKIP][444] ([i915#2527]) +2 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-rkl: [SKIP][445] ([i915#14544] / [i915#5286]) -> [SKIP][446] ([i915#5286])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-rkl: [SKIP][447] ([i915#5286]) -> [SKIP][448] ([i915#14544] / [i915#5286]) +2 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][449] ([i915#3828]) -> [SKIP][450] ([i915#14544] / [i915#3828])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-rkl: [SKIP][451] ([i915#14544] / [i915#3638]) -> [SKIP][452] ([i915#3638])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-8/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg1: [SKIP][453] ([i915#4423] / [i915#4538]) -> [SKIP][454] ([i915#4538])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: [SKIP][455] ([i915#14544]) -> [SKIP][456] +1 other test skip
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][457] ([i915#12313]) -> [SKIP][458] ([i915#12313] / [i915#14544])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][459] ([i915#14544] / [i915#6095]) -> [SKIP][460] ([i915#6095]) +4 other tests skip
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][461] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][462] ([i915#14098] / [i915#6095]) +6 other tests skip
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk: [INCOMPLETE][463] ([i915#15582]) -> [INCOMPLETE][464] ([i915#14694] / [i915#15582])
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: [SKIP][465] ([i915#6095]) -> [SKIP][466] ([i915#4423] / [i915#6095]) +1 other test skip
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-16/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-18/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][467] ([i915#14098] / [i915#6095]) -> [SKIP][468] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][469] ([i915#6095]) -> [SKIP][470] ([i915#14544] / [i915#6095]) +4 other tests skip
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- 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_18297/shard-rkl-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-rkl: [SKIP][473] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][474] ([i915#11151] / [i915#7828])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@content-type-change:
- shard-rkl: [SKIP][475] ([i915#15865]) -> [SKIP][476] ([i915#14544] / [i915#15865]) +1 other test skip
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-8/igt@kms_content_protection@content-type-change.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: [SKIP][477] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][478] ([i915#15330] / [i915#3116])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: [SKIP][479] ([i915#14544] / [i915#3555]) -> [SKIP][480] ([i915#3555]) +2 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-dg1: [SKIP][481] ([i915#3555]) -> [SKIP][482] ([i915#3555] / [i915#4423])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-12/igt@kms_cursor_crc@cursor-sliding-32x32.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: [SKIP][483] -> [SKIP][484] ([i915#14544]) +8 other tests skip
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: [SKIP][485] ([i915#14544] / [i915#4854]) -> [SKIP][486] ([i915#4854])
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_feature_discovery@chamelium.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: [SKIP][487] ([i915#9337]) -> [SKIP][488] ([i915#14544] / [i915#9337])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-2/igt@kms_feature_discovery@dp-mst.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: [SKIP][489] ([i915#9934]) -> [SKIP][490] ([i915#14544] / [i915#9934]) +1 other test skip
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-rkl: [SKIP][491] ([i915#14544] / [i915#9934]) -> [SKIP][492] ([i915#9934])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_flip@2x-nonexisting-fb-interruptible.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-4/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: [INCOMPLETE][493] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][494] ([i915#12745] / [i915#4839])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-glk8/igt@kms_flip@flip-vs-suspend.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk6/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: [INCOMPLETE][495] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][496] ([i915#12745])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-glk8/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: [SKIP][497] ([i915#15643]) -> [SKIP][498] ([i915#14544] / [i915#15643]) +3 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: [SKIP][499] ([i915#1825]) -> [SKIP][500] ([i915#14544] / [i915#1825]) +10 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg1: [SKIP][501] -> [SKIP][502] ([i915#4423])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-rkl: [SKIP][503] ([i915#14544] / [i915#1825]) -> [SKIP][504] ([i915#1825]) +7 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][505] ([i915#15102] / [i915#3458]) -> [SKIP][506] ([i915#10433] / [i915#15102] / [i915#3458]) +3 other tests skip
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
- shard-rkl: [SKIP][507] ([i915#15102] / [i915#3023]) -> [SKIP][508] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-rkl: [SKIP][509] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][510] ([i915#15102] / [i915#3023]) +3 other tests skip
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][511] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][512] ([i915#15102] / [i915#3458]) +1 other test skip
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][513] ([i915#8708]) -> [SKIP][514] ([i915#4423] / [i915#8708])
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-dg1: [SKIP][515] ([i915#4423] / [i915#8708]) -> [SKIP][516] ([i915#8708])
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][517] ([i915#12713]) -> [SKIP][518] ([i915#1187] / [i915#12713])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-4/igt@kms_hdr@brightness-with-hdr.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: [SKIP][519] ([i915#1187] / [i915#12713]) -> [SKIP][520] ([i915#12713])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-4/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: [SKIP][521] ([i915#1187] / [i915#12713]) -> [SKIP][522] ([i915#12713])
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-tglu-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: [SKIP][523] ([i915#13688] / [i915#14544]) -> [SKIP][524] ([i915#13688])
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping:
- shard-rkl: [SKIP][525] ([i915#14544] / [i915#15709]) -> [SKIP][526] ([i915#15709])
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-rkl: [SKIP][527] ([i915#15709]) -> [SKIP][528] ([i915#14544] / [i915#15709])
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: [SKIP][529] ([i915#12343] / [i915#14544]) -> [SKIP][530] ([i915#12343])
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-7/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][531] ([i915#9340]) -> [SKIP][532] ([i915#3828])
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: [SKIP][533] ([i915#14544] / [i915#6524]) -> [SKIP][534] ([i915#6524])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: [SKIP][535] ([i915#11520]) -> [SKIP][536] ([i915#11520] / [i915#14544]) +4 other tests skip
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-dg1: [SKIP][537] ([i915#11520] / [i915#4423]) -> [SKIP][538] ([i915#11520])
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-13/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-13/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-dg1: [SKIP][539] ([i915#11520]) -> [SKIP][540] ([i915#11520] / [i915#4423])
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-rkl: [SKIP][541] ([i915#11520] / [i915#14544]) -> [SKIP][542] ([i915#11520])
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@pr-cursor-mmap-gtt:
- shard-dg1: [SKIP][543] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][544] ([i915#1072] / [i915#9732]) +1 other test skip
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-13/igt@kms_psr@pr-cursor-mmap-gtt.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg1-12/igt@kms_psr@pr-cursor-mmap-gtt.html
* igt@kms_psr@pr-primary-blt:
- shard-rkl: [SKIP][545] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][546] ([i915#1072] / [i915#9732]) +5 other tests skip
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_psr@pr-primary-blt.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-4/igt@kms_psr@pr-primary-blt.html
* igt@kms_psr@psr-suspend:
- shard-rkl: [SKIP][547] ([i915#1072] / [i915#9732]) -> [SKIP][548] ([i915#1072] / [i915#14544] / [i915#9732]) +8 other tests skip
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_psr@psr-suspend.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_psr@psr-suspend.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: [SKIP][549] ([i915#5289]) -> [SKIP][550] ([i915#14544] / [i915#5289])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: [SKIP][551] ([i915#9906]) -> [SKIP][552] ([i915#14544] / [i915#9906])
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-rkl: [SKIP][553] ([i915#11920] / [i915#14544]) -> [SKIP][554] ([i915#11920])
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_vrr@lobf.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-3/igt@kms_vrr@lobf.html
* igt@perf_pmu@module-unload:
- shard-dg2: [ABORT][555] ([i915#13029] / [i915#15778]) -> [ABORT][556] ([i915#15778])
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg2-7/igt@perf_pmu@module-unload.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-dg2-7/igt@perf_pmu@module-unload.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: [SKIP][557] ([i915#14544] / [i915#9917]) -> [SKIP][558] ([i915#9917])
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-4/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: [SKIP][559] ([i915#9917]) -> [SKIP][560] ([i915#14544] / [i915#9917])
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@sriov_basic@enable-vfs-bind-unbind-each.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html
[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#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[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#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15314
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15511]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15511
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15762]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15762
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[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#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#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#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[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#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#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#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[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#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#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#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8851 -> IGTPW_14940
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18297: e105f427a4533d9a6d4597597da78484313c9b61 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14940: 14940
IGT_8851: 8851
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14940/index.html
[-- Attachment #2: Type: text/html, Size: 187068 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-04-09 19:54 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-07 10:52 [PATCH i-g-t v2] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies Krzysztof Niemiec
2026-04-07 11:42 ` Janusz Krzysztofik
2026-04-09 11:46 ` Krzysztof Niemiec
2026-04-09 12:28 ` Janusz Krzysztofik
2026-04-09 14:01 ` Krzysztof Niemiec
2026-04-09 7:43 ` ✓ Xe.CI.BAT: success for tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies (rev2) Patchwork
2026-04-09 7:56 ` ✓ i915.CI.BAT: " Patchwork
2026-04-09 8:52 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-09 19:54 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox