* [PATCH i-g-t v1 0/2] Refresh connector when property fetch fails and update proper atomic flag
@ 2026-03-02 14:30 Sowmiya S
2026-03-02 14:30 ` [PATCH i-g-t v1 1/2] tests/kms_properties: Refresh connector when property fetch fails Sowmiya S
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Sowmiya S @ 2026-03-02 14:30 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, swati2.sharma, Sowmiya S
drmModeObjectGetProperties() may fail for connectors
that have just changed state (e.g., hotplug, reprobing)
and whose connector ID is now stale. Add a connector
specific recovery path to test_properties.
Also update proper atomic flag for each specific subtest.
Sowmiya S (2):
tests/kms_properties: Refresh connector when property fetch fails
tests/kms_properties: Use per-subtest atomic flag
tests/kms_properties.c | 31 +++++++++++++++++++++++--------
1 file changed, 23 insertions(+), 8 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH i-g-t v1 1/2] tests/kms_properties: Refresh connector when property fetch fails
2026-03-02 14:30 [PATCH i-g-t v1 0/2] Refresh connector when property fetch fails and update proper atomic flag Sowmiya S
@ 2026-03-02 14:30 ` Sowmiya S
2026-03-02 14:30 ` [PATCH i-g-t v1 2/2] tests/kms_properties: Use per-subtest atomic flag Sowmiya S
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Sowmiya S @ 2026-03-02 14:30 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, swati2.sharma, Sowmiya S
drmModeObjectGetProperties() may fail for connectors
that have just changed state (e.g., hotplug, reprobing)
and whose connector ID is now stale. Add a connector
specific recovery path to test_properties
Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
---
tests/kms_properties.c | 27 +++++++++++++++++++++------
1 file changed, 21 insertions(+), 6 deletions(-)
diff --git a/tests/kms_properties.c b/tests/kms_properties.c
index 86d05c6d4..8ac122850 100644
--- a/tests/kms_properties.c
+++ b/tests/kms_properties.c
@@ -178,14 +178,26 @@ static bool has_additional_test_lookup(uint32_t obj_type, const char *name,
return false;
}
-static void test_properties(int fd, uint32_t type, uint32_t id, bool atomic, bool has_color_pipeline)
+
+static void test_properties(int fd, uint32_t type, uint32_t id, bool atomic,
+ bool has_color_pipeline, igt_output_t *output)
{
drmModeObjectPropertiesPtr props =
drmModeObjectGetProperties(fd, id, type);
int i, j, ret;
drmModeAtomicReqPtr req = NULL;
- igt_assert(props);
+ if (!props && type == DRM_MODE_OBJECT_CONNECTOR && output) {
+ igt_info("Connector properties query failed on id=%u, refreshing output and retrying\n",
+ id);
+ igt_output_refresh(output);
+ id = output->id;
+ props = drmModeObjectGetProperties(fd, id, type);
+ }
+
+ igt_assert_f(props,
+ "Failed to get properties for object id=%u type=%u after retry (output: %s)\n",
+ id, type, output ? output->name : "N/A");
if (atomic)
req = drmModeAtomicAlloc();
@@ -261,7 +273,7 @@ static void run_colorop_property_tests(igt_display_t *display,
colorop->id,
kmstest_plane_type_name(plane->type), output->name);
test_properties(display->drm_fd, DRM_MODE_OBJECT_COLOROP, colorop->id,
- atomic, display->has_plane_color_pipeline);
+ atomic, display->has_plane_color_pipeline, output);
colorop_id = igt_colorop_get_prop(display, colorop,
IGT_COLOROP_NEXT);
@@ -288,7 +300,8 @@ static void run_plane_property_tests(igt_display_t *display, igt_crtc_t *crtc,
igt_crtc_name(crtc), plane->index,
kmstest_plane_type_name(plane->type), output->name);
- test_properties(display->drm_fd, DRM_MODE_OBJECT_PLANE, plane->drm_plane->plane_id, atomic, display->has_plane_color_pipeline);
+ test_properties(display->drm_fd, DRM_MODE_OBJECT_PLANE, plane->drm_plane->plane_id,
+ atomic, display->has_plane_color_pipeline, output);
}
cleanup_pipe(display, crtc, output,
@@ -309,7 +322,8 @@ static void run_crtc_property_tests(igt_display_t *display, igt_crtc_t *crtc,
test_properties(display->drm_fd, DRM_MODE_OBJECT_CRTC,
crtc->crtc_id,
atomic,
- false);
+ false,
+ output);
cleanup_pipe(display, crtc, output,
&fb);
@@ -328,7 +342,8 @@ static void run_connector_property_tests(igt_display_t *display,
igt_info("Testing connector properties on output %s (pipe: %s)\n", output->name,
igt_crtc_name(crtc));
- test_properties(display->drm_fd, DRM_MODE_OBJECT_CONNECTOR, output->id, atomic, false);
+ test_properties(display->drm_fd, DRM_MODE_OBJECT_CONNECTOR, output->id,
+ atomic, false, output);
if (crtc != NULL)
cleanup_pipe(display, crtc,
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH i-g-t v1 2/2] tests/kms_properties: Use per-subtest atomic flag
2026-03-02 14:30 [PATCH i-g-t v1 0/2] Refresh connector when property fetch fails and update proper atomic flag Sowmiya S
2026-03-02 14:30 ` [PATCH i-g-t v1 1/2] tests/kms_properties: Refresh connector when property fetch fails Sowmiya S
@ 2026-03-02 14:30 ` Sowmiya S
2026-03-03 21:36 ` ✓ Xe.CI.BAT: success for Refresh connector when property fetch fails and update proper " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Sowmiya S @ 2026-03-02 14:30 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, swati2.sharma, Sowmiya S
Fix subtest dispatch to use the current
test entry’s atomic field (tests[i].atomic)
Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
---
tests/kms_properties.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/kms_properties.c b/tests/kms_properties.c
index 8ac122850..c3ba2b522 100644
--- a/tests/kms_properties.c
+++ b/tests/kms_properties.c
@@ -1001,10 +1001,10 @@ int igt_main()
for (i = 0; i < ARRAY_SIZE(tests); i++) {
igt_describe_f("%s\n", tests[i].desc);
igt_subtest_with_dynamic_f("%s", tests[i].name) {
- if (tests->atomic && !display.is_atomic)
+ if (tests[i].atomic && !display.is_atomic)
continue;
- tests[i].func(&display, tests->atomic);
+ tests[i].func(&display, tests[i].atomic);
}
}
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for Refresh connector when property fetch fails and update proper atomic flag
2026-03-02 14:30 [PATCH i-g-t v1 0/2] Refresh connector when property fetch fails and update proper atomic flag Sowmiya S
2026-03-02 14:30 ` [PATCH i-g-t v1 1/2] tests/kms_properties: Refresh connector when property fetch fails Sowmiya S
2026-03-02 14:30 ` [PATCH i-g-t v1 2/2] tests/kms_properties: Use per-subtest atomic flag Sowmiya S
@ 2026-03-03 21:36 ` Patchwork
2026-03-03 21:52 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-03-03 21:36 UTC (permalink / raw)
To: Sowmiya S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2312 bytes --]
== Series Details ==
Series: Refresh connector when property fetch fails and update proper atomic flag
URL : https://patchwork.freedesktop.org/series/162431/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8777_BAT -> XEIGTPW_14645_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 12)
------------------------------
Missing (1): bat-dg2-oem2
Known issues
------------
Here are the changes found in XEIGTPW_14645_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- bat-bmg-1: [DMESG-WARN][1] ([Intel XE#7433]) -> [PASS][2] +3 other tests pass
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/bat-bmg-1/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/bat-bmg-1/igt@core_hotunplug@unbind-rebind.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- bat-bmg-2: [DMESG-WARN][3] ([Intel XE#7433]) -> [PASS][4] +3 other tests pass
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@xe_module_load@load:
- bat-bmg-3: [DMESG-WARN][5] ([Intel XE#7433]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/bat-bmg-3/igt@xe_module_load@load.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/bat-bmg-3/igt@xe_module_load@load.html
[Intel XE#7433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7433
Build changes
-------------
* IGT: IGT_8777 -> IGTPW_14645
* Linux: xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c -> xe-4655-cfc20c776480fda8c1b0517b187bb71ec0781cd4
IGTPW_14645: 14645
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c: 3fe1f7a93adf8e03fb044eb57b63394afe6e139c
xe-4655-cfc20c776480fda8c1b0517b187bb71ec0781cd4: cfc20c776480fda8c1b0517b187bb71ec0781cd4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/index.html
[-- Attachment #2: Type: text/html, Size: 3099 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for Refresh connector when property fetch fails and update proper atomic flag
2026-03-02 14:30 [PATCH i-g-t v1 0/2] Refresh connector when property fetch fails and update proper atomic flag Sowmiya S
` (2 preceding siblings ...)
2026-03-03 21:36 ` ✓ Xe.CI.BAT: success for Refresh connector when property fetch fails and update proper " Patchwork
@ 2026-03-03 21:52 ` Patchwork
2026-03-04 8:10 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-03-04 9:09 ` ✓ i915.CI.Full: success " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-03-03 21:52 UTC (permalink / raw)
To: Sowmiya S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7722 bytes --]
== Series Details ==
Series: Refresh connector when property fetch fails and update proper atomic flag
URL : https://patchwork.freedesktop.org/series/162431/
State : success
== Summary ==
CI Bug Log - changes from IGT_8777 -> IGTPW_14645
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/index.html
Participating hosts (39 -> 39)
------------------------------
Additional (2): fi-pnv-d510 bat-adls-6
Missing (2): bat-dg2-13 bat-atsm-1
Known issues
------------
Here are the changes found in IGTPW_14645 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@basic:
- bat-dg2-8: [PASS][1] -> [ABORT][2] ([i915#15759]) +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-dg2-8/igt@gem_lmem_swapping@basic.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/bat-dg2-8/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic@basic:
- bat-adls-6: NOTRUN -> [SKIP][4] ([i915#15656])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/bat-adls-6/igt@gem_tiled_pread_basic@basic.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-arls-5/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-dg2-14: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/bat-dg2-14/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [PASS][9] -> [DMESG-FAIL][10] ([i915#12061]) +1 other test dmesg-fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-arls-6/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/bat-arls-6/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][11] ([i915#7707]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][12] ([i915#4103]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#3840])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][14]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][15] ([i915#5354])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- fi-pnv-d510: NOTRUN -> [SKIP][16] +35 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/fi-pnv-d510/igt@kms_psr@psr-primary-mmap-gtt.html
- bat-adls-6: NOTRUN -> [SKIP][17] ([i915#1072] / [i915#9732]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][18] ([i915#3555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][19] ([i915#3291]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/bat-adls-6/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [DMESG-WARN][20] ([i915#13735]) -> [PASS][21] +79 other tests pass
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [DMESG-FAIL][22] ([i915#12061]) -> [PASS][23] +1 other test pass
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/bat-dg2-9/igt@i915_selftest@live@workarounds.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [DMESG-WARN][24] ([i915#13735] / [i915#180]) -> [PASS][25] +53 other tests pass
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-arls-5: [DMESG-FAIL][26] ([i915#15784]) -> [DMESG-FAIL][27] ([i915#12061] / [i915#15784])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-arls-5/igt@i915_selftest@live.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/bat-arls-5/igt@i915_selftest@live.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15759]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15759
[i915#15784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15784
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8777 -> IGTPW_14645
* Linux: CI_DRM_18075 -> CI_DRM_18085
CI-20190529: 20190529
CI_DRM_18075: 3fe1f7a93adf8e03fb044eb57b63394afe6e139c @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18085: cfc20c776480fda8c1b0517b187bb71ec0781cd4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14645: 14645
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/index.html
[-- Attachment #2: Type: text/html, Size: 9269 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Xe.CI.FULL: failure for Refresh connector when property fetch fails and update proper atomic flag
2026-03-02 14:30 [PATCH i-g-t v1 0/2] Refresh connector when property fetch fails and update proper atomic flag Sowmiya S
` (3 preceding siblings ...)
2026-03-03 21:52 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-03-04 8:10 ` Patchwork
2026-03-04 9:09 ` ✓ i915.CI.Full: success " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-03-04 8:10 UTC (permalink / raw)
To: Sowmiya S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 89411 bytes --]
== Series Details ==
Series: Refresh connector when property fetch fails and update proper atomic flag
URL : https://patchwork.freedesktop.org/series/162431/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8777_FULL -> XEIGTPW_14645_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14645_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14645_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_14645_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_oa@mmio-triggered-reports@oag-0:
- shard-bmg: NOTRUN -> [FAIL][1] +11 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@xe_oa@mmio-triggered-reports@oag-0.html
#### Warnings ####
* igt@xe_oa@mmio-triggered-reports-read:
- shard-bmg: [SKIP][2] ([Intel XE#6703]) -> [FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_oa@mmio-triggered-reports-read.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@xe_oa@mmio-triggered-reports-read.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@xe_sriov_flr@flr-basic@numvfs-1}:
- shard-bmg: NOTRUN -> [ABORT][4] +1 other test abort
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@xe_sriov_flr@flr-basic@numvfs-1.html
Known issues
------------
Here are the changes found in XEIGTPW_14645_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear:
- shard-lnl: [PASS][5] -> [FAIL][6] ([Intel XE#5993] / [Intel XE#7509]) +3 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2370]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2327]) +19 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#3658] / [Intel XE#7360])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7059] / [Intel XE#7085]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2328] / [Intel XE#7367])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb.html
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1467] / [Intel XE#7367])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-6/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#610] / [Intel XE#7387]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +53 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#607] / [Intel XE#7361]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) +6 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#367] / [Intel XE#7354]) +12 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#367] / [Intel XE#7354])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-7/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#2669] / [Intel XE#7389]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#3432]) +9 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2652]) +43 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#3432])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +74 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2724] / [Intel XE#7449]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2325] / [Intel XE#7358]) +9 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#306] / [Intel XE#7358])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-4/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2252]) +48 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#6507])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#6969]) +10 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-6/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#6969] / [Intel XE#7006]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-6/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][32] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2341]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2390] / [Intel XE#6974]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-6/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#6974]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][36] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +14 other tests fail
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#6973])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-3/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@suspend-resume@pipe-a-dp-1:
- shard-bmg: NOTRUN -> [FAIL][38] ([Intel XE#3304])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_content_protection@suspend-resume@pipe-a-dp-1.html
* igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-1:
- shard-bmg: NOTRUN -> [FAIL][39] ([Intel XE#6707] / [Intel XE#7439]) +3 other tests fail
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-1.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2320]) +23 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#2321] / [Intel XE#7355])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2321] / [Intel XE#7355]) +6 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2286] / [Intel XE#6035]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#4210] / [Intel XE#7467])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#1508]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#1340] / [Intel XE#7435])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#4354] / [Intel XE#5882])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#4354] / [Intel XE#7386])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#4354] / [Intel XE#7473])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#4331] / [Intel XE#7227])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2244]) +6 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#4422] / [Intel XE#7442]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#4156] / [Intel XE#7425]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#6126] / [Intel XE#776])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2372] / [Intel XE#7359])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@kms_feature_discovery@chamelium.html
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#701] / [Intel XE#7359])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-6/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2373] / [Intel XE#7448])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#1138] / [Intel XE#7344])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2375] / [Intel XE#7438])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2374] / [Intel XE#6127])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2374] / [Intel XE#7468])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1421]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-7/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: NOTRUN -> [INCOMPLETE][63] ([Intel XE#2049] / [Intel XE#2597]) +2 other tests incomplete
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3:
- shard-bmg: NOTRUN -> [INCOMPLETE][64] ([Intel XE#2049])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#7178] / [Intel XE#7349]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#7178] / [Intel XE#7351])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#7178] / [Intel XE#7351]) +19 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#7179]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#4141]) +67 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#6312])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2311]) +151 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#7061] / [Intel XE#7356]) +22 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2352] / [Intel XE#7399]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2350] / [Intel XE#7503])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2313]) +155 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#656]) +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#7308])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#3374] / [Intel XE#3544])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#6901]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#4298] / [Intel XE#5873])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#6911] / [Intel XE#7378])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#6911] / [Intel XE#7466]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#4090] / [Intel XE#7443])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2501] / [Intel XE#7465])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2486])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#6912] / [Intel XE#7375])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#7130]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#7283]) +22 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#7283])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-4/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2393]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#5021] / [Intel XE#7377]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#5020] / [Intel XE#7348])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2763] / [Intel XE#6886]) +23 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#7376] / [Intel XE#870]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2938] / [Intel XE#7376])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#3309] / [Intel XE#7368])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2392] / [Intel XE#7463]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2499])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#6814] / [Intel XE#7428])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#1489]) +40 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2387] / [Intel XE#7429]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1406] / [Intel XE#7345])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-primary-render@edp-1:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1406] / [Intel XE#4609])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-render@edp-1.html
* igt@kms_psr@psr2-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2234] / [Intel XE#2850]) +63 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@kms_psr@psr2-no-drrs.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2234])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2414] / [Intel XE#7446]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2330] / [Intel XE#5813]) +3 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +9 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2413]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#1435]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#6503]) +9 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [FAIL][115] ([Intel XE#1729] / [Intel XE#7424])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2509] / [Intel XE#7437])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2450] / [Intel XE#7440])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#1499]) +7 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2168] / [Intel XE#7444])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@kms_vrr@lobf.html
* igt@kms_vrr@lobf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][120] ([Intel XE#6390] / [Intel XE#7461]) +1 other test fail
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-6/igt@kms_vrr@lobf@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][121] -> [FAIL][122] ([Intel XE#2142]) +1 other test fail
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#6599]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@xe_compute@ccs-mode-basic.html
* igt@xe_configfs@survivability-mode:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#6010] / [Intel XE#7317] / [Intel XE#7455])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-6/igt@xe_configfs@survivability-mode.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#4837]) +39 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug@sysfs-toggle:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#4837]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-4/igt@xe_eudebug@sysfs-toggle.html
* igt@xe_eudebug_online@breakpoint-many-sessions-single-tile:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#4837] / [Intel XE#6665]) +24 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html
* igt@xe_eudebug_online@pagefault-one-of-many:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#6665])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@xe_eudebug_online@pagefault-one-of-many.html
* igt@xe_eudebug_online@pagefault-read-stress:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#6665] / [Intel XE#6681]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@xe_eudebug_online@pagefault-read-stress.html
* igt@xe_eudebug_online@pagefault-write:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#4837] / [Intel XE#6665])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-2/igt@xe_eudebug_online@pagefault-write.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#5793] / [Intel XE#7320] / [Intel XE#7464])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-cm-threads-large:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-2/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: NOTRUN -> [INCOMPLETE][134] ([Intel XE#6321])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#7140]) +8 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@xe_evict@evict-threads-small-multi-queue.html
* igt@xe_exec_balancer@once-parallel-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#7482]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-5/igt@xe_exec_balancer@once-parallel-userptr-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2322] / [Intel XE#7372]) +43 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1392]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html
* igt@xe_exec_fault_mode@once-multi-queue-prefetch:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#7136]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-2/igt@xe_exec_fault_mode@once-multi-queue-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#7136]) +63 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#6874]) +5 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-7/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#6874]) +156 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][143] ([Intel XE#7098])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_threads@threads-many-queues:
- shard-bmg: NOTRUN -> [FAIL][144] ([Intel XE#7166])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@xe_exec_threads@threads-many-queues.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#7138]) +50 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html
* igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#7138]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#6281] / [Intel XE#7426])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2229])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2833])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2459] / [Intel XE#2596] / [Intel XE#7321] / [Intel XE#7453])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@xe_mmap@small-bar.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#6964]) +17 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-8/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2245])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2236])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#5694] / [Intel XE#7370])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2284] / [Intel XE#7370]) +8 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@d3hot-i2c:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#584] / [Intel XE#7369])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-2/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#4733] / [Intel XE#7417]) +13 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#944]) +13 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#944])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-2/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: NOTRUN -> [FAIL][165] ([Intel XE#6569])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_survivability@runtime-survivability:
- shard-bmg: NOTRUN -> [DMESG-WARN][166] ([Intel XE#6627] / [Intel XE#7419])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@xe_survivability@runtime-survivability.html
#### Possible fixes ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-bmg: [SKIP][167] ([Intel XE#6779]) -> [PASS][168]
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@core_hotunplug@hotrebind-lateclose.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@core_hotunplug@hotrebind-lateclose.html
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [SKIP][169] ([Intel XE#5177] / [Intel XE#6703]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@intel_hwmon@hwmon-write.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [FAIL][171] ([Intel XE#6054] / [Intel XE#7509]) -> [PASS][172] +3 other tests pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][173] ([Intel XE#7340]) -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-bmg: [SKIP][175] ([Intel XE#6693]) -> [PASS][176] +1 other test pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_pm_rpm@basic-pci-d3-state.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@xe_create@invalid-pad:
- shard-bmg: [SKIP][177] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][178] +3 other tests pass
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_create@invalid-pad.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@xe_create@invalid-pad.html
* igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind:
- shard-bmg: [SKIP][179] ([Intel XE#6703]) -> [PASS][180] +273 other tests pass
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [FAIL][181] ([Intel XE#5625]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_module_load@force-load:
- shard-bmg: [FAIL][183] -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_module_load@force-load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@xe_module_load@force-load.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: [SKIP][185] ([Intel XE#6703]) -> [SKIP][186] ([Intel XE#2233])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: [SKIP][187] ([Intel XE#6703]) -> [SKIP][188] ([Intel XE#2327]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-bmg: [SKIP][189] ([Intel XE#6703]) -> [SKIP][190] ([Intel XE#1124]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-bmg: [SKIP][191] ([Intel XE#6703]) -> [SKIP][192] ([Intel XE#367] / [Intel XE#7354]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][193] ([Intel XE#6703]) -> [SKIP][194] ([Intel XE#2887]) +5 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][195] ([Intel XE#6703]) -> [SKIP][196] ([Intel XE#2652])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: [SKIP][197] ([Intel XE#6703]) -> [SKIP][198] ([Intel XE#2252]) +5 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_chamelium_audio@hdmi-audio-edid.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@gamma:
- shard-bmg: [SKIP][199] ([Intel XE#6703]) -> [SKIP][200] ([Intel XE#2325] / [Intel XE#7358])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_chamelium_color@gamma.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_chamelium_color@gamma.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: [SKIP][201] ([Intel XE#6703]) -> [SKIP][202] ([Intel XE#2321] / [Intel XE#7355])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: [SKIP][203] ([Intel XE#6703]) -> [SKIP][204] ([Intel XE#2320]) +2 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_cursor_crc@cursor-random-32x32.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_dsc@dsc-with-formats:
- shard-bmg: [SKIP][205] ([Intel XE#6703]) -> [SKIP][206] ([Intel XE#2244])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_dsc@dsc-with-formats.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: [SKIP][207] ([Intel XE#6703]) -> [SKIP][208] ([Intel XE#4422] / [Intel XE#7442])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: [SKIP][209] ([Intel XE#6703]) -> [SKIP][210] ([Intel XE#6126] / [Intel XE#776])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_fbcon_fbt@psr-suspend.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-bmg: [SKIP][211] ([Intel XE#6703]) -> [SKIP][212] ([Intel XE#7178] / [Intel XE#7351])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][213] ([Intel XE#6703]) -> [SKIP][214] ([Intel XE#2311]) +11 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][215] ([Intel XE#6703]) -> [SKIP][216] ([Intel XE#4141]) +9 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render:
- shard-bmg: [SKIP][217] ([Intel XE#6703]) -> [SKIP][218] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][219] ([Intel XE#6703]) -> [SKIP][220] ([Intel XE#2313]) +11 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][221] ([Intel XE#6703]) -> [SKIP][222] ([Intel XE#7283]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: [SKIP][223] ([Intel XE#6703]) -> [SKIP][224] ([Intel XE#2763] / [Intel XE#6886])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: [SKIP][225] ([Intel XE#6703]) -> [SKIP][226] ([Intel XE#7376] / [Intel XE#870])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_pm_backlight@basic-brightness.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: [SKIP][227] ([Intel XE#6693]) -> [SKIP][228] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-lnl: [SKIP][229] ([Intel XE#2893]) -> [SKIP][230] ([Intel XE#2893] / [Intel XE#7304])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-bmg: [SKIP][231] ([Intel XE#6703]) -> [SKIP][232] ([Intel XE#1489]) +2 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1:
- shard-lnl: [SKIP][233] ([Intel XE#4608]) -> [SKIP][234] ([Intel XE#4608] / [Intel XE#7304]) +11 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-lnl: [SKIP][235] ([Intel XE#2893] / [Intel XE#4608]) -> [SKIP][236] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) +11 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-suspend:
- shard-bmg: [SKIP][237] ([Intel XE#6703]) -> [SKIP][238] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_psr@fbc-psr-suspend.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@kms_psr@fbc-psr-suspend.html
* igt@kms_sharpness_filter@filter-basic:
- shard-bmg: [SKIP][239] ([Intel XE#6703]) -> [SKIP][240] ([Intel XE#6503]) +2 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_sharpness_filter@filter-basic.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@kms_sharpness_filter@filter-basic.html
* igt@kms_vrr@cmrr:
- shard-bmg: [SKIP][241] ([Intel XE#6703]) -> [SKIP][242] ([Intel XE#2168] / [Intel XE#7444])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_vrr@cmrr.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@kms_vrr@cmrr.html
* igt@xe_eudebug@basic-vm-bind-discovery:
- shard-bmg: [SKIP][243] ([Intel XE#6703]) -> [SKIP][244] ([Intel XE#4837]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-discovery.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-discovery.html
* igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
- shard-bmg: [SKIP][245] ([Intel XE#6703]) -> [SKIP][246] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: [SKIP][247] ([Intel XE#6703]) -> [SKIP][248] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
- shard-bmg: [SKIP][249] ([Intel XE#6703]) -> [SKIP][250] ([Intel XE#7136]) +6 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem:
- shard-bmg: [SKIP][251] ([Intel XE#6703]) -> [SKIP][252] ([Intel XE#6874]) +9 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
- shard-bmg: [SKIP][253] ([Intel XE#6703]) -> [SKIP][254] ([Intel XE#7138]) +3 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
* igt@xe_module_load@load:
- shard-bmg: ([DMESG-WARN][255], [DMESG-WARN][256], [DMESG-WARN][257], [DMESG-WARN][258], [DMESG-WARN][259], [DMESG-WARN][260], [DMESG-WARN][261], [DMESG-WARN][262], [DMESG-WARN][263], [DMESG-WARN][264], [DMESG-WARN][265], [DMESG-WARN][266], [DMESG-WARN][267], [DMESG-WARN][268], [DMESG-WARN][269], [DMESG-WARN][270], [DMESG-WARN][271], [DMESG-WARN][272], [PASS][273], [PASS][274], [DMESG-WARN][275], [DMESG-WARN][276], [DMESG-WARN][277], [DMESG-WARN][278], [DMESG-WARN][279]) ([Intel XE#7433]) -> ([PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [SKIP][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305]) ([Intel XE#2457] / [Intel XE#7405])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-5/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-1/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-1/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-1/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-7/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-7/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-7/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-9/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-9/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-9/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-2/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-2/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-2/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-8/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-8/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-6/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-6/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-6/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-4/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-4/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-4/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-5/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-5/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-9/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-1/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-6/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-6/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-8/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-3/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-4/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-5/igt@xe_module_load@load.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: [SKIP][306] ([Intel XE#6703]) -> [SKIP][307] ([Intel XE#1420])
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_pat@pat-index-xehpc.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-7/igt@xe_pat@pat-index-xehpc.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: [SKIP][308] ([Intel XE#6703]) -> [SKIP][309] ([Intel XE#944])
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/shard-bmg-2/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5177
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
[Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
[Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
[Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6390
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
[Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
[Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
[Intel XE#6973]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6973
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[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#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7317]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7317
[Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
[Intel XE#7320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7320
[Intel XE#7321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7321
[Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
[Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359
[Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
[Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
[Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7426
[Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7433
[Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7438]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7438
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7440
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7446
[Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7453
[Intel XE#7455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7455
[Intel XE#7461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7461
[Intel XE#7463]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7463
[Intel XE#7464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7464
[Intel XE#7465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7465
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467
[Intel XE#7468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7468
[Intel XE#7473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7473
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
[Intel XE#7509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7509
[Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8777 -> IGTPW_14645
* Linux: xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c -> xe-4655-cfc20c776480fda8c1b0517b187bb71ec0781cd4
IGTPW_14645: 14645
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c: 3fe1f7a93adf8e03fb044eb57b63394afe6e139c
xe-4655-cfc20c776480fda8c1b0517b187bb71ec0781cd4: cfc20c776480fda8c1b0517b187bb71ec0781cd4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14645/index.html
[-- Attachment #2: Type: text/html, Size: 104450 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.Full: success for Refresh connector when property fetch fails and update proper atomic flag
2026-03-02 14:30 [PATCH i-g-t v1 0/2] Refresh connector when property fetch fails and update proper atomic flag Sowmiya S
` (4 preceding siblings ...)
2026-03-04 8:10 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-03-04 9:09 ` Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-03-04 9:09 UTC (permalink / raw)
To: Sowmiya S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 170413 bytes --]
== Series Details ==
Series: Refresh connector when property fetch fails and update proper atomic flag
URL : https://patchwork.freedesktop.org/series/162431/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_18085_full -> IGTPW_14645_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_14645_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#8411])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][2] ([i915#11078])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-17/igt@device_reset@cold-reset-bound.html
* igt@drm_buddy@drm_buddy:
- shard-rkl: NOTRUN -> [SKIP][3] ([i915#15678])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-7/igt@drm_buddy@drm_buddy.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#3281]) +8 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#3281]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-5/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#3936])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-6/igt@gem_busy@semaphore.html
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#3936])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-13/igt@gem_busy@semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#3936])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-1/igt@gem_busy@semaphore.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#4873])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-8/igt@gem_caching@writes.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-8/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#8562])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@gem_create@create-ext-set-pat.html
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#8562])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@gem_create@create-ext-set-pat.html
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#8562])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-8/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: NOTRUN -> [ABORT][17] ([i915#15131]) +1 other test abort
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-1/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_isolation@preservation-s3@vecs0:
- shard-dg1: NOTRUN -> [ABORT][18] ([i915#15759])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-16/igt@gem_ctx_isolation@preservation-s3@vecs0.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8555]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-3/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_sseu@engines:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#280])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-8/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#280]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@gem_ctx_sseu@invalid-sseu.html
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-2/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#4771]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#4771]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-6/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#4525])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-9/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#4525])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-4/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_big@single:
- shard-rkl: NOTRUN -> [DMESG-FAIL][31] ([i915#15478])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@gem_exec_big@single.html
- shard-tglu: NOTRUN -> [ABORT][32] ([i915#11713])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-10/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#6334]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@gem_exec_capture@capture-invisible@lmem0.html
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#6334]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][35] ([i915#6334]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk5/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#6334]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu: NOTRUN -> [SKIP][37] ([i915#6334]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-10/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#6334]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-3/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_endless@dispatch@rcs0:
- shard-rkl: NOTRUN -> [TIMEOUT][39] ([i915#3778]) +1 other test timeout
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-1/igt@gem_exec_endless@dispatch@rcs0.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4812]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-3/igt@gem_exec_fence@submit3.html
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4812]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-8/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-wb-ro-default:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +9 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-active:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#14544] / [i915#3281])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-active.html
* igt@gem_exec_reloc@basic-wc-read-active:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#3281]) +11 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read-active.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4812]) +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-18/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4860]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-2/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4860])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][51] ([i915#4613]) +8 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk1/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@gem_lmem_swapping@parallel-random-verify.html
- shard-tglu: NOTRUN -> [SKIP][53] ([i915#4613]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-2/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random@lmem0:
- shard-dg1: [PASS][55] -> [ABORT][56] ([i915#15759]) +2 other tests abort
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg1-18/igt@gem_lmem_swapping@parallel-random@lmem0.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-18/igt@gem_lmem_swapping@parallel-random@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#12193])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4565])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4077]) +6 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-5/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4077]) +6 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-6/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [PASS][62] -> [ABORT][63] ([i915#14809]) +1 other test abort
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-mtlp-1/igt@gem_mmap_offset@clear-via-pagefault.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_mmap_wc@bad-size:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4083]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-3/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) +7 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-3/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4083]) +11 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#3282]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#14544] / [i915#3282])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@snoop:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#3282]) +5 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][70] ([i915#14702] / [i915#2658])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk5/igt@gem_pwrite@basic-exhaustion.html
- shard-snb: NOTRUN -> [WARN][71] ([i915#2658])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-snb1/igt@gem_pwrite@basic-exhaustion.html
- shard-tglu: NOTRUN -> [WARN][72] ([i915#2658])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-7/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [FAIL][73] ([i915#15717])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#13398])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-3/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#13398]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#4270]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-18/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4270]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-3/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_readwrite@beyond-eob:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#3282]) +6 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@gem_readwrite@beyond-eob.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3282]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-7/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#8428]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#5190] / [i915#8428]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#4079])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-18/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4885])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#3281] / [i915#3297])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-3/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#3297])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#3297])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-10/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3297])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-3/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][91] ([i915#13356]) +2 other tests incomplete
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk9/igt@gem_workarounds@suspend-resume-context.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [PASS][92] -> [INCOMPLETE][93] ([i915#13356])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-7/igt@gem_workarounds@suspend-resume-fd.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#2527]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@gen9_exec_parse@bb-oversize.html
- shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#2527]) +5 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@gen9_exec_parse@bb-start-cmd.html
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-7/igt@gen9_exec_parse@bb-start-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#2856]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-2/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-out:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#2856]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-1/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_drm_fdinfo@isolation@rcs0:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#14073]) +7 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-5/igt@i915_drm_fdinfo@isolation@rcs0.html
* igt@i915_drm_fdinfo@most-busy-check-all@bcs0:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#14073]) +6 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-3/igt@i915_drm_fdinfo@most-busy-check-all@bcs0.html
* igt@i915_drm_fdinfo@virtual-busy-all:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#14118]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-2/igt@i915_drm_fdinfo@virtual-busy-all.html
* igt@i915_drm_fdinfo@virtual-busy-hang:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#14118])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@i915_drm_fdinfo@virtual-busy-hang.html
* igt@i915_module_load@reload-no-display:
- shard-dg1: [PASS][104] -> [DMESG-WARN][105] ([i915#13029] / [i915#14545])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg1-13/igt@i915_module_load@reload-no-display.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#8399])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-7/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#6590]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][108] ([i915#13790] / [i915#2681]) +1 other test warn
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#14498])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#11681] / [i915#6621])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_sseu@full-enable:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4387])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#5723])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@i915_query@test-query-geometry-subslices.html
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#5723])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-4/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: [PASS][114] -> [DMESG-FAIL][115] ([i915#12061]) +1 other test dmesg-fail
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-7/igt@i915_selftest@live@workarounds.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-5/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: [PASS][116] -> [ABORT][117] ([i915#15131])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-2/igt@i915_suspend@debugfs-reader.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-1/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk11: NOTRUN -> [INCOMPLETE][118] ([i915#4817])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk11/igt@i915_suspend@fence-restore-tiled2untiled.html
- shard-rkl: [PASS][119] -> [INCOMPLETE][120] ([i915#4817])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-8/igt@i915_suspend@fence-restore-tiled2untiled.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][121] ([i915#4817])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk4/igt@i915_suspend@forcewake.html
- shard-rkl: NOTRUN -> [INCOMPLETE][122] ([i915#4817])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-4/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#4212]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-2/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#4212])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-13/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk10: NOTRUN -> [INCOMPLETE][125] ([i915#12761])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk10/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-glk10: NOTRUN -> [INCOMPLETE][126] ([i915#12761] / [i915#14995])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk10/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#14544] / [i915#9531])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: [PASS][128] -> [FAIL][129] ([i915#5956]) +1 other test fail
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#1769] / [i915#3555])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk10: NOTRUN -> [SKIP][131] ([i915#1769])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#14544] / [i915#1769] / [i915#3555])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#1769] / [i915#3555])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#14544] / [i915#5286])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5286]) +6 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#5286]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-2/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#5286]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#5286]) +5 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#3638]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][140] +15 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-8/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#3828])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#14544] / [i915#3638]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][143] +9 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [DMESG-WARN][144] ([i915#4423])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#3638]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5190]) +9 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#4538]) +7 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-18/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#6095]) +44 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#6095]) +47 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-3/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#10307] / [i915#6095]) +90 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#6095]) +44 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#6095]) +218 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#12805]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#6095]) +64 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#12805])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][156] ([i915#15582]) +3 other tests incomplete
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][157] ([i915#15582]) +1 other test incomplete
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/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@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#6095]) +49 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#14544] / [i915#6095]) +4 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#12313])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#14098] / [i915#6095]) +47 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#13781]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +10 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +4 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-5/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +4 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +6 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +9 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +4 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_color@deep-color:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#12655] / [i915#3555])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-5/igt@kms_color@deep-color.html
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#12655] / [i915#3555])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-7/igt@kms_color@deep-color.html
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#12655] / [i915#3555])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-17/igt@kms_color@deep-color.html
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#9979])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-5/igt@kms_color@deep-color.html
* igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-c-plane-2:
- shard-mtlp: NOTRUN -> [FAIL][175] ([i915#15733]) +12 other tests fail
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-5/igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-c-plane-2.html
* igt@kms_content_protection@atomic:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#4423] / [i915#6944] / [i915#7116] / [i915#9424])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-13/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#6944])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-6/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@content-type-change:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#6944] / [i915#9424])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#15330] / [i915#3299])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#15330])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#15330] / [i915#3116] / [i915#3299]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#15330] / [i915#3299])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#6944] / [i915#7118] / [i915#9424])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-7/igt@kms_content_protection@legacy.html
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#6944] / [i915#7118] / [i915#9424])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@kms_content_protection@legacy.html
- shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_content_protection@legacy.html
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#6944] / [i915#7116] / [i915#9424])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-18/igt@kms_content_protection@legacy.html
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#6944] / [i915#9424]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-4/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#6944])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@kms_content_protection@legacy-hdcp14.html
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#6944]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-18/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#6944] / [i915#9424]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-2/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#6944])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-9/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [PASS][193] -> [FAIL][194] ([i915#13566]) +1 other test fail
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-tglu: [PASS][195] -> [FAIL][196] ([i915#13566]) +1 other test fail
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#13049])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#13049])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#3555]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#13049]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#3555]) +12 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-rkl: NOTRUN -> [FAIL][202] ([i915#13566]) +1 other test fail
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-128x42.html
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#8814]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#3555]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8814]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#4103]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#13046] / [i915#5354]) +4 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#9809]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#9067])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#9067])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#9067])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#9067])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#9833])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#13691])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@kms_display_modes@extended-mode-basic.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#13691])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-18/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#13749]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#13748])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#13748])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#13749])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-1/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#13707])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#8812])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-16/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#3840] / [i915#9053])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#3840] / [i915#9053])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#1839])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@kms_feature_discovery@display-3x.html
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#14544] / [i915#1839])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_feature_discovery@display-3x.html
- shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#1839]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_feature_discovery@display-3x.html
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#1839])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@kms_feature_discovery@display-3x.html
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#1839])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-4/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#1839])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@kms_feature_discovery@display-4x.html
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#1839]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-4/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-glk10: NOTRUN -> [SKIP][232] +143 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk10/igt@kms_feature_discovery@dp-mst.html
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#14544] / [i915#9337])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#9337])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-10/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#658])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#9934]) +7 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-1/igt@kms_flip@2x-blocking-wf_vblank.html
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#9934]) +10 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-18/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3637] / [i915#9934]) +4 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#14544] / [i915#9934])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-vga1-hdmi-a1:
- shard-snb: [PASS][240] -> [FAIL][241] ([i915#13027]) +1 other test fail
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-snb5/igt@kms_flip@2x-flip-vs-expired-vblank@ab-vga1-hdmi-a1.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-snb1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#8381])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-16/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#8381])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#9934]) +9 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#3637] / [i915#9934]) +7 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#3637] / [i915#9934]) +5 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-7/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#15643]) +2 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8810] / [i915#8813]) +2 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#8810] / [i915#8813])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#15643]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#15643])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#15643]) +4 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#15643]) +2 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#15643]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#15643] / [i915#5190]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: [PASS][256] -> [SKIP][257] ([i915#15672])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-dg2: [PASS][258] -> [FAIL][259] ([i915#15389])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][260] +70 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#5439])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#10055]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#15102])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#15102] / [i915#3458]) +16 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#15102] / [i915#3023]) +22 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#15102] / [i915#3458]) +26 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-tglu-1: NOTRUN -> [SKIP][267] +35 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#8708]) +10 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][269] +52 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#1825]) +19 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#14544] / [i915#1825]) +6 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#4423] / [i915#8708])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#10055]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#15102]) +19 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#15102]) +5 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#14544] / [i915#15102])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#15102]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#15104]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#8708]) +4 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#5354]) +19 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#1825]) +33 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#10433] / [i915#15102] / [i915#3458])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#8708]) +18 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][285] ([i915#15102]) +18 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#12713])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-9/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) +2 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@kms_hdr@static-swap.html
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-5/igt@kms_hdr@static-swap.html
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#12713] / [i915#3555] / [i915#8228])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-4/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8228]) +3 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#3555] / [i915#8228]) +4 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-17/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@clock-too-high:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#3555] / [i915#6403] / [i915#8826])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#9457]) +2 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html
* igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#8826] / [i915#9457])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#15460])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-4/igt@kms_joiner@basic-big-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#15460])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#15459])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-6/igt@kms_joiner@basic-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#15459])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#13688])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-2/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#15459])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#15458])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#15638] / [i915#15722])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#1839] / [i915#4816])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#6301])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#6301])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-9/igt@kms_panel_fitting@legacy.html
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#6301])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-3/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#6301])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-17/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-rkl: NOTRUN -> [SKIP][309] +24 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [PASS][310] -> [INCOMPLETE][311] ([i915#12756] / [i915#13476])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-8/igt@kms_pipe_crc_basic@suspend-read-crc.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc.html
- shard-glk: NOTRUN -> [INCOMPLETE][312] ([i915#12756] / [i915#13409] / [i915#13476])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][313] ([i915#13409] / [i915#13476])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][314] ([i915#12756])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#13705])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#15709]) +6 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-16/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#15709]) +3 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-2/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#15608]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-linear-modifier:
- shard-dg2: [PASS][319] -> [ABORT][320] ([i915#15759]) +3 other tests abort
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-7/igt@kms_plane@pixel-format-linear-modifier.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-1/igt@kms_plane@pixel-format-linear-modifier.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#15608]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-mtlp: NOTRUN -> [SKIP][322] ([i915#15709]) +3 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-2/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][323] ([i915#15709]) +3 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#15608]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
- shard-tglu: NOTRUN -> [SKIP][325] ([i915#15608]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#15608]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#15608]) +3 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: NOTRUN -> [SKIP][328] ([i915#15709]) +5 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-5/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#15709]) +1 other test skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-glk: NOTRUN -> [INCOMPLETE][330] ([i915#13026]) +1 other test incomplete
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][331] ([i915#12178])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk3/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][332] ([i915#7862]) +1 other test fail
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk3/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][333] ([i915#10647] / [i915#12169])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk9/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][334] ([i915#10647]) +1 other test fail
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk9/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][335] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-1/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][336] ([i915#11614] / [i915#3582]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-1/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#3555]) +4 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#13958])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#13958])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][340] ([i915#13958]) +2 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][341] ([i915#6953] / [i915#9423])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][342] ([i915#15329]) +4 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-18/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][343] ([i915#15329]) +11 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu: NOTRUN -> [SKIP][344] ([i915#9812])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-7/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][345] ([i915#9812]) +1 other test skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg1: NOTRUN -> [SKIP][346] ([i915#5354]) +1 other test skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#3828])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-3/igt@kms_pm_dc@dc5-retention-flops.html
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#3828])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-4/igt@kms_pm_dc@dc5-retention-flops.html
- shard-dg1: NOTRUN -> [SKIP][349] ([i915#3828])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@kms_pm_dc@dc5-retention-flops.html
- shard-tglu: NOTRUN -> [SKIP][350] ([i915#3828])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-2/igt@kms_pm_dc@dc5-retention-flops.html
- shard-mtlp: NOTRUN -> [SKIP][351] ([i915#3828])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-7/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu-1: NOTRUN -> [FAIL][352] ([i915#15752])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#9685]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-7/igt@kms_pm_dc@dc6-psr.html
- shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#9685])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#14544] / [i915#15739])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][356] ([i915#9340])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][357] ([i915#8430])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg1: [PASS][358] -> [DMESG-WARN][359] ([i915#4423]) +1 other test dmesg-warn
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg1-13/igt@kms_pm_rpm@basic-pci-d3-state.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@cursor:
- shard-dg1: NOTRUN -> [SKIP][360] ([i915#4077]) +16 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][361] ([i915#15073]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-tglu: NOTRUN -> [SKIP][362] ([i915#15073])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#15073])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg1: [PASS][364] -> [SKIP][365] ([i915#15073])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-dg1: NOTRUN -> [SKIP][366] ([i915#15403])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [PASS][367] -> [INCOMPLETE][368] ([i915#14419])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-8/igt@kms_pm_rpm@system-suspend-idle.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-7/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk11: NOTRUN -> [INCOMPLETE][369] ([i915#10553])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk11/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][370] ([i915#6524]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-4/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg1: NOTRUN -> [SKIP][371] ([i915#6524])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-16/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][372] ([i915#6524])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-glk10: NOTRUN -> [SKIP][373] ([i915#11520]) +5 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][374] ([i915#11520]) +3 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][375] ([i915#11520]) +8 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-4/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][376] ([i915#9808]) +5 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][377] ([i915#12316]) +7 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][378] ([i915#11520]) +6 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][379] ([i915#11520]) +12 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#11520] / [i915#14544]) +2 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
- shard-snb: NOTRUN -> [SKIP][381] ([i915#11520]) +3 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-snb7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][382] ([i915#11520]) +13 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-glk11: NOTRUN -> [SKIP][383] ([i915#11520]) +2 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk11/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][384] ([i915#11520]) +10 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-7/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-tglu-1: NOTRUN -> [SKIP][385] ([i915#9683])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][386] ([i915#9683])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][387] ([i915#9732]) +14 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-primary-page-flip@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][388] ([i915#9688]) +15 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-6/igt@kms_psr@fbc-psr-primary-page-flip@edp-1.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-dg1: NOTRUN -> [SKIP][389] ([i915#1072] / [i915#9732]) +33 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-17/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][390] +428 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk3/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-rkl: NOTRUN -> [SKIP][391] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][392] ([i915#1072] / [i915#9732]) +18 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-5/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][393] ([i915#1072] / [i915#9732]) +19 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][394] ([i915#9732]) +15 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-2/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][395] ([i915#9685]) +1 other test skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][396] ([i915#9685])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-tglu: NOTRUN -> [SKIP][397] ([i915#9685])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][398] ([i915#4884])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][399] ([i915#15500])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk5/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][400] ([i915#5289])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][401] ([i915#12755])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][402] ([i915#12755] / [i915#5190])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][403] ([i915#5289]) +1 other test skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg1: NOTRUN -> [SKIP][404] ([i915#5289]) +1 other test skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu: NOTRUN -> [SKIP][405] ([i915#5289]) +1 other test skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][406] ([i915#12755])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-tglu: NOTRUN -> [SKIP][407] ([i915#3555]) +4 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][408] ([i915#13179]) +1 other test abort
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-1/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@basic:
- shard-rkl: [PASS][409] -> [FAIL][410] ([i915#15106])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-7/igt@kms_setmode@basic.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][411] ([i915#15106]) +1 other test fail
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-mtlp: NOTRUN -> [SKIP][412] ([i915#3555] / [i915#8809])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][413] ([i915#8623])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern.html
- shard-glk: NOTRUN -> [FAIL][414] ([i915#10959])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][415] ([i915#8623])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-snb: [PASS][416] -> [ABORT][417] ([i915#14871]) +1 other test abort
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-snb6/igt@kms_vblank@ts-continuation-dpms-suspend.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-snb5/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][418] ([i915#3555] / [i915#8808]) +1 other test skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-2/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: NOTRUN -> [SKIP][419] ([i915#9906])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-dg1: NOTRUN -> [SKIP][420] ([i915#9906])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-tglu: NOTRUN -> [SKIP][421] ([i915#9906])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-3/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@gen12-oa-tlb-invalidate:
- shard-glk11: NOTRUN -> [SKIP][422] +47 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk11/igt@perf@gen12-oa-tlb-invalidate.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][423] ([i915#2436])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][424] ([i915#9100]) +1 other test fail
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][425] ([i915#2433])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-12/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][426] ([i915#2433])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-accuracy-98:
- shard-snb: NOTRUN -> [SKIP][427] +106 other tests skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-snb1/igt@perf_pmu@busy-accuracy-98.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][428] ([i915#4349]) +5 other tests fail
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@event-wait@rcs0:
- shard-rkl: NOTRUN -> [SKIP][429] ([i915#14544]) +6 other tests skip
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@module-unload:
- shard-tglu: NOTRUN -> [ABORT][430] ([i915#15778])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-6/igt@perf_pmu@module-unload.html
* igt@perf_pmu@render-node-busy-idle:
- shard-mtlp: [PASS][431] -> [FAIL][432] ([i915#4349]) +1 other test fail
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-mtlp-8/igt@perf_pmu@render-node-busy-idle.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-7/igt@perf_pmu@render-node-busy-idle.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][433] ([i915#3708] / [i915#4077])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@prime_vgem@basic-fence-mmap.html
- shard-dg1: NOTRUN -> [SKIP][434] ([i915#3708] / [i915#4077])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-18/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-dg1: NOTRUN -> [SKIP][435] ([i915#3708])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-16/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@coherency-gtt:
- shard-mtlp: NOTRUN -> [SKIP][436] ([i915#3708] / [i915#4077])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-5/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-mtlp: NOTRUN -> [SKIP][437] ([i915#3708])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-7/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][438] ([i915#14544] / [i915#3708])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf@vf-1:
- shard-tglu-1: NOTRUN -> [FAIL][439] ([i915#12910]) +9 other tests fail
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg1: NOTRUN -> [SKIP][440] ([i915#9917]) +1 other test skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [FAIL][441] ([i915#12910])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-mtlp: NOTRUN -> [FAIL][442] ([i915#12910]) +10 other tests fail
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-dg2: NOTRUN -> [SKIP][443] ([i915#9917])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][444] ([i915#13356]) -> [PASS][445]
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-5/igt@gem_ccs@suspend-resume.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][446] ([i915#12392] / [i915#13356]) -> [PASS][447]
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_exec_create@basic@lmem0:
- shard-dg1: [ABORT][448] ([i915#15759]) -> [PASS][449] +7 other tests pass
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg1-19/igt@gem_exec_create@basic@lmem0.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-16/igt@gem_exec_create@basic@lmem0.html
* igt@gem_exec_endless@dispatch:
- shard-dg2: [TIMEOUT][450] ([i915#3778] / [i915#7016]) -> [PASS][451]
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-4/igt@gem_exec_endless@dispatch.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-3/igt@gem_exec_endless@dispatch.html
* igt@gem_exec_endless@dispatch@vecs1:
- shard-dg2: [TIMEOUT][452] ([i915#7016]) -> [PASS][453]
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-4/igt@gem_exec_endless@dispatch@vecs1.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-3/igt@gem_exec_endless@dispatch@vecs1.html
* igt@gem_exec_suspend@basic-s3:
- shard-rkl: [ABORT][454] ([i915#15131]) -> [PASS][455] +1 other test pass
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-1/igt@gem_exec_suspend@basic-s3.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@gem_exec_suspend@basic-s3.html
* igt@gem_workarounds@suspend-resume:
- shard-rkl: [INCOMPLETE][456] ([i915#13356]) -> [PASS][457]
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@gem_workarounds@suspend-resume.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@gem_workarounds@suspend-resume.html
* igt@i915_module_load@load:
- shard-glk: ([PASS][458], [PASS][459], [PASS][460], [PASS][461], [PASS][462], [PASS][463], [PASS][464], [PASS][465], [PASS][466], [PASS][467], [PASS][468], [PASS][469], [PASS][470], [PASS][471], [DMESG-WARN][472], [PASS][473], [PASS][474], [PASS][475], [PASS][476], [PASS][477]) ([i915#118]) -> ([PASS][478], [PASS][479], [PASS][480], [PASS][481], [PASS][482], [PASS][483], [PASS][484], [PASS][485], [PASS][486], [PASS][487], [PASS][488], [PASS][489], [PASS][490], [PASS][491], [PASS][492], [PASS][493], [PASS][494], [PASS][495], [PASS][496], [PASS][497])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk6/igt@i915_module_load@load.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk1/igt@i915_module_load@load.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk3/igt@i915_module_load@load.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk8/igt@i915_module_load@load.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk6/igt@i915_module_load@load.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk2/igt@i915_module_load@load.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk2/igt@i915_module_load@load.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk8/igt@i915_module_load@load.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk3/igt@i915_module_load@load.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk8/igt@i915_module_load@load.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk1/igt@i915_module_load@load.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk2/igt@i915_module_load@load.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk9/igt@i915_module_load@load.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk6/igt@i915_module_load@load.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk5/igt@i915_module_load@load.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk9/igt@i915_module_load@load.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk4/igt@i915_module_load@load.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk5/igt@i915_module_load@load.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk2/igt@i915_module_load@load.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk5/igt@i915_module_load@load.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk9/igt@i915_module_load@load.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk9/igt@i915_module_load@load.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk8/igt@i915_module_load@load.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk8/igt@i915_module_load@load.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk6/igt@i915_module_load@load.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk6/igt@i915_module_load@load.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk6/igt@i915_module_load@load.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk5/igt@i915_module_load@load.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk5/igt@i915_module_load@load.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk5/igt@i915_module_load@load.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk5/igt@i915_module_load@load.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk1/igt@i915_module_load@load.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk4/igt@i915_module_load@load.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk4/igt@i915_module_load@load.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk1/igt@i915_module_load@load.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk3/igt@i915_module_load@load.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk2/igt@i915_module_load@load.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk3/igt@i915_module_load@load.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk2/igt@i915_module_load@load.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk3/igt@i915_module_load@load.html
* igt@i915_module_load@resize-bar:
- shard-dg2: [DMESG-WARN][498] ([i915#14545]) -> [PASS][499]
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-3/igt@i915_module_load@resize-bar.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [INCOMPLETE][500] ([i915#13356] / [i915#13820]) -> [PASS][501] +1 other test pass
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_selftest@live@perf:
- shard-mtlp: [INCOMPLETE][502] -> [PASS][503]
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-mtlp-6/igt@i915_selftest@live@perf.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-6/igt@i915_selftest@live@perf.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: [INCOMPLETE][504] ([i915#4817]) -> [PASS][505]
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk3/igt@i915_suspend@debugfs-reader.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk3/igt@i915_suspend@debugfs-reader.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [FAIL][506] ([i915#13566]) -> [PASS][507] +3 other tests pass
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [FAIL][508] ([i915#13566]) -> [PASS][509] +2 other tests pass
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-snb: [TIMEOUT][510] ([i915#14033] / [i915#14350]) -> [PASS][511]
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [TIMEOUT][512] ([i915#14033]) -> [PASS][513]
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-dg1: [DMESG-WARN][514] ([i915#4423]) -> [PASS][515] +1 other test pass
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg2: [FAIL][516] ([i915#15389] / [i915#6880]) -> [PASS][517]
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_hdmi_inject@inject-audio:
- shard-mtlp: [SKIP][518] ([i915#15725]) -> [PASS][519]
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: [SKIP][520] ([i915#3555] / [i915#8228]) -> [PASS][521]
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-4/igt@kms_hdr@bpc-switch.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_hdr@bpc-switch.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][522] ([i915#15073]) -> [PASS][523] +1 other test pass
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg2: [SKIP][524] ([i915#12916]) -> [PASS][525]
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-7/igt@kms_pm_rpm@i2c.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-3/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][526] ([i915#14544] / [i915#15073]) -> [PASS][527]
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][528] ([i915#15073]) -> [PASS][529] +1 other test pass
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [INCOMPLETE][530] ([i915#12276]) -> [PASS][531] +1 other test pass
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-4/igt@kms_vblank@ts-continuation-dpms-suspend.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-mtlp: [FAIL][532] ([i915#4349]) -> [PASS][533] +2 other tests pass
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-mtlp-4/igt@perf_pmu@busy-double-start@vcs1.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html
#### Warnings ####
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: [SKIP][534] ([i915#14544] / [i915#280]) -> [SKIP][535] ([i915#280])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: [SKIP][536] ([i915#4525]) -> [SKIP][537] ([i915#14544] / [i915#4525])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-4/igt@gem_exec_balancer@parallel-keep-submit-fence.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_reloc@basic-concurrent16:
- shard-rkl: [SKIP][538] ([i915#3281]) -> [SKIP][539] ([i915#14544] / [i915#3281]) +3 other tests skip
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-4/igt@gem_exec_reloc@basic-concurrent16.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@gem_exec_reloc@basic-concurrent16.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: [SKIP][540] ([i915#14544] / [i915#3281]) -> [SKIP][541] ([i915#3281]) +3 other tests skip
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-4/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: [SKIP][542] ([i915#7276]) -> [SKIP][543] ([i915#14544] / [i915#7276])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-8/igt@gem_exec_schedule@semaphore-power.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: [SKIP][544] ([i915#14544] / [i915#2190]) -> [SKIP][545] ([i915#2190])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@gem_huc_copy@huc-copy.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-rkl: [SKIP][546] ([i915#4613]) -> [SKIP][547] ([i915#14544] / [i915#4613]) +1 other test skip
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: [SKIP][548] ([i915#14544] / [i915#4613]) -> [SKIP][549] ([i915#4613]) +2 other tests skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@smem-oom:
- shard-dg2: [ABORT][550] ([i915#15759]) -> [FAIL][551] ([i915#15734])
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-4/igt@gem_lmem_swapping@smem-oom.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-1/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [ABORT][552] ([i915#15759]) -> [CRASH][553] ([i915#5493])
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-4/igt@gem_lmem_swapping@smem-oom@lmem0.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-rkl: [SKIP][554] ([i915#3282]) -> [SKIP][555] ([i915#14544] / [i915#3282]) +1 other test skip
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-7/igt@gem_madvise@dontneed-before-pwrite.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_media_vme:
- shard-rkl: [SKIP][556] ([i915#14544] / [i915#284]) -> [SKIP][557] ([i915#284])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@gem_media_vme.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@gem_media_vme.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][558] ([i915#14544] / [i915#3282]) -> [SKIP][559] ([i915#3282]) +3 other tests skip
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: [SKIP][560] ([i915#8411]) -> [SKIP][561] ([i915#14544] / [i915#8411])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: [SKIP][562] ([i915#14544] / [i915#3297]) -> [SKIP][563] ([i915#3297]) +1 other test skip
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@gem_userptr_blits@coherency-unsync.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: [SKIP][564] ([i915#14544] / [i915#2527]) -> [SKIP][565] ([i915#2527])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-4/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: [SKIP][566] ([i915#2527]) -> [SKIP][567] ([i915#14544] / [i915#2527])
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@resize-bar:
- shard-rkl: [SKIP][568] ([i915#14544] / [i915#6412]) -> [SKIP][569] ([i915#6412])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@i915_module_load@resize-bar.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-5/igt@i915_module_load@resize-bar.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][570] ([i915#14544] / [i915#4387]) -> [SKIP][571] ([i915#4387])
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-5/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-rkl: [SKIP][572] ([i915#14544] / [i915#6245]) -> [SKIP][573] ([i915#6245])
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@i915_query@hwconfig_table.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@live:
- shard-mtlp: [INCOMPLETE][574] ([i915#15176]) -> [DMESG-FAIL][575] ([i915#12061] / [i915#15560])
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-mtlp-6/igt@i915_selftest@live.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-mtlp-6/igt@i915_selftest@live.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: [SKIP][576] ([i915#14544] / [i915#7707]) -> [SKIP][577] ([i915#7707])
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@intel_hwmon@hwmon-write.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-rkl: [SKIP][578] ([i915#14544] / [i915#5286]) -> [SKIP][579] ([i915#5286]) +1 other test skip
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][580] ([i915#5286]) -> [SKIP][581] ([i915#14544] / [i915#5286]) +2 other tests skip
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-8/igt@kms_big_fb@4-tiled-addfb.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][582] ([i915#14544] / [i915#3828]) -> [SKIP][583] ([i915#3828])
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: [SKIP][584] ([i915#14544] / [i915#3638]) -> [SKIP][585] ([i915#3638]) +1 other test skip
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][586] -> [SKIP][587] ([i915#14544]) +8 other tests skip
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][588] ([i915#14544]) -> [SKIP][589] +4 other tests skip
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][590] ([i915#14544] / [i915#6095]) -> [SKIP][591] ([i915#6095]) +1 other test skip
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][592] ([i915#12313]) -> [SKIP][593] ([i915#12313] / [i915#14544])
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][594] ([i915#12805] / [i915#14544]) -> [SKIP][595] ([i915#12805])
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: [SKIP][596] ([i915#14098] / [i915#6095]) -> [SKIP][597] ([i915#14098] / [i915#14544] / [i915#6095]) +8 other tests skip
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][598] ([i915#6095]) -> [SKIP][599] ([i915#14544] / [i915#6095]) +5 other tests skip
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-rkl: [SKIP][600] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][601] ([i915#14098] / [i915#6095]) +5 other tests skip
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: [SKIP][602] ([i915#3742]) -> [SKIP][603] ([i915#14544] / [i915#3742])
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-8/igt@kms_cdclk@mode-transition.html
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-rkl: [SKIP][604] ([i915#11151] / [i915#7828]) -> [SKIP][605] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-8/igt@kms_chamelium_frames@dp-crc-fast.html
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: [SKIP][606] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][607] ([i915#11151] / [i915#7828]) +3 other tests skip
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: [SKIP][608] ([i915#14544] / [i915#15330]) -> [SKIP][609] ([i915#15330])
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][610] ([i915#6944] / [i915#7118]) -> [SKIP][611] ([i915#14544] / [i915#6944] / [i915#7118])
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-4/igt@kms_content_protection@srm.html
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-rkl: [SKIP][612] ([i915#3555]) -> [SKIP][613] ([i915#14544] / [i915#3555]) +1 other test skip
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-32x10.html
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][614] ([i915#13049]) -> [SKIP][615] ([i915#13049] / [i915#14544])
[614]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html
[615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-rkl: [SKIP][616] ([i915#14544] / [i915#3555]) -> [SKIP][617] ([i915#3555])
[616]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_cursor_crc@cursor-random-max-size.html
[617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: [SKIP][618] ([i915#9723]) -> [SKIP][619] ([i915#14544] / [i915#9723])
[618]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: [SKIP][620] ([i915#13707] / [i915#14544]) -> [SKIP][621] ([i915#13707])
[620]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: [SKIP][622] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][623] ([i915#3555] / [i915#3840])
[622]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_dsc@dsc-basic.html
[623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][624] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][625] ([i915#12745] / [i915#4839] / [i915#6113])
[624]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk8/igt@kms_flip@2x-flip-vs-suspend.html
[625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk2/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][626] ([i915#12314] / [i915#4839]) -> [INCOMPLETE][627] ([i915#4839] / [i915#6113])
[626]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-glk8/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
[627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-glk2/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-rkl: [SKIP][628] ([i915#9934]) -> [SKIP][629] ([i915#14544] / [i915#9934]) +2 other tests skip
[628]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-7/igt@kms_flip@2x-modeset-vs-vblank-race.html
[629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-rkl: [SKIP][630] ([i915#14544] / [i915#9934]) -> [SKIP][631] ([i915#9934]) +1 other test skip
[630]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check.html
[631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-4/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-rkl: [SKIP][632] ([i915#15643]) -> [SKIP][633] ([i915#14544] / [i915#15643]) +2 other tests skip
[632]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
[633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: [SKIP][634] ([i915#14544] / [i915#15643]) -> [SKIP][635] ([i915#15643]) +4 other tests skip
[634]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-dg1: [SKIP][636] ([i915#4423]) -> [SKIP][637] +1 other test skip
[636]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
[637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render:
- shard-rkl: [SKIP][638] ([i915#15102]) -> [SKIP][639] ([i915#14544] / [i915#15102]) +1 other test skip
[638]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
[639]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][640] ([i915#15102] / [i915#3458]) -> [SKIP][641] ([i915#10433] / [i915#15102] / [i915#3458]) +2 other tests skip
[640]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[641]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][642] ([i915#1825]) -> [SKIP][643] ([i915#14544] / [i915#1825]) +20 other tests skip
[642]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[643]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][644] ([i915#14544] / [i915#1825]) -> [SKIP][645] ([i915#1825]) +14 other tests skip
[644]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[645]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-dg2: [SKIP][646] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][647] ([i915#15102] / [i915#3458]) +2 other tests skip
[646]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[647]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-rkl: [SKIP][648] ([i915#14544] / [i915#15102]) -> [SKIP][649] ([i915#15102]) +1 other test skip
[648]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
[649]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][650] ([i915#4423] / [i915#8708]) -> [SKIP][651] ([i915#8708])
[650]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
[651]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][652] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][653] ([i915#15102] / [i915#3023]) +4 other tests skip
[652]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
[653]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-rkl: [SKIP][654] ([i915#15102] / [i915#3023]) -> [SKIP][655] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip
[654]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[655]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][656] ([i915#12713]) -> [SKIP][657] ([i915#13331])
[656]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html
[657]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-1/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: [SKIP][658] ([i915#1187] / [i915#12713]) -> [SKIP][659] ([i915#12713])
[658]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
[659]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-17/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: [SKIP][660] ([i915#14544] / [i915#3555] / [i915#8228]) -> [SKIP][661] ([i915#3555] / [i915#8228])
[660]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_hdr@invalid-hdr.html
[661]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-4/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: [SKIP][662] ([i915#15459]) -> [SKIP][663] ([i915#14544] / [i915#15459])
[662]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[663]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: [SKIP][664] ([i915#14544] / [i915#15458]) -> [SKIP][665] ([i915#15458])
[664]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[665]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-rkl: [SKIP][666] ([i915#15709]) -> [SKIP][667] ([i915#14544] / [i915#15709]) +1 other test skip
[666]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-7/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
[667]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-rkl: [SKIP][668] ([i915#13958]) -> [SKIP][669] ([i915#13958] / [i915#14544])
[668]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-x.html
[669]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: [SKIP][670] ([i915#14259] / [i915#14544]) -> [SKIP][671] ([i915#14259])
[670]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html
[671]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: [SKIP][672] ([i915#14544] / [i915#15329]) -> [SKIP][673] ([i915#15329]) +7 other tests skip
[672]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
[673]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: [SKIP][674] ([i915#4423] / [i915#5354]) -> [SKIP][675] ([i915#5354])
[674]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg1-13/igt@kms_pm_backlight@basic-brightness.html
[675]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-14/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: [SKIP][676] ([i915#5354]) -> [SKIP][677] ([i915#14544] / [i915#5354])
[676]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-8/igt@kms_pm_backlight@fade-with-dpms.html
[677]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: [SKIP][678] ([i915#14544] / [i915#5354]) -> [SKIP][679] ([i915#5354])
[678]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html
[679]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][680] ([i915#15739]) -> [SKIP][681] ([i915#15128])
[680]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html
[681]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][682] ([i915#3828]) -> [SKIP][683] ([i915#9340])
[682]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html
[683]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][684] ([i915#15073]) -> [SKIP][685] ([i915#14544] / [i915#15073])
[684]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
[685]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@pm-caching:
- shard-dg2: [SKIP][686] ([i915#4077]) -> [SKIP][687] ([i915#12916])
[686]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg2-3/igt@kms_pm_rpm@pm-caching.html
[687]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg2-5/igt@kms_pm_rpm@pm-caching.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][688] ([i915#11520]) -> [SKIP][689] ([i915#11520] / [i915#14544])
[688]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
[689]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][690] ([i915#11520] / [i915#14544]) -> [SKIP][691] ([i915#11520]) +3 other tests skip
[690]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
[691]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: [SKIP][692] ([i915#9683]) -> [SKIP][693] ([i915#14544] / [i915#9683])
[692]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html
[693]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@pr-no-drrs:
- shard-dg1: [SKIP][694] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][695] ([i915#1072] / [i915#9732])
[694]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-dg1-13/igt@kms_psr@pr-no-drrs.html
[695]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-dg1-19/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@psr-sprite-mmap-gtt:
- shard-rkl: [SKIP][696] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][697] ([i915#1072] / [i915#9732]) +7 other tests skip
[696]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_psr@psr-sprite-mmap-gtt.html
[697]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-8/igt@kms_psr@psr-sprite-mmap-gtt.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: [SKIP][698] ([i915#1072] / [i915#9732]) -> [SKIP][699] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip
[698]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-4/igt@kms_psr@psr-sprite-plane-onoff.html
[699]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_vrr@flip-dpms:
- shard-rkl: [SKIP][700] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][701] ([i915#15243] / [i915#3555])
[700]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-6/igt@kms_vrr@flip-dpms.html
[701]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-4/igt@kms_vrr@flip-dpms.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: [SKIP][702] ([i915#2435]) -> [SKIP][703] ([i915#14544] / [i915#2435])
[702]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18085/shard-rkl-7/igt@perf@per-context-mode-unprivileged.html
[703]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[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#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#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#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#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#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809
[i915#14871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14871
[i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995
[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#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15176
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[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#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[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#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15717
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15734
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15759]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15759
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[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#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[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#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[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#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6403
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[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#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9457
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[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
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8777 -> IGTPW_14645
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18085: cfc20c776480fda8c1b0517b187bb71ec0781cd4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14645: 14645
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14645/index.html
[-- Attachment #2: Type: text/html, Size: 229800 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-03-04 9:09 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-02 14:30 [PATCH i-g-t v1 0/2] Refresh connector when property fetch fails and update proper atomic flag Sowmiya S
2026-03-02 14:30 ` [PATCH i-g-t v1 1/2] tests/kms_properties: Refresh connector when property fetch fails Sowmiya S
2026-03-02 14:30 ` [PATCH i-g-t v1 2/2] tests/kms_properties: Use per-subtest atomic flag Sowmiya S
2026-03-03 21:36 ` ✓ Xe.CI.BAT: success for Refresh connector when property fetch fails and update proper " Patchwork
2026-03-03 21:52 ` ✓ i915.CI.BAT: " Patchwork
2026-03-04 8:10 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-03-04 9:09 ` ✓ i915.CI.Full: success " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox