* [PATCH i-g-t] lib/xe/xe_eudebug: Deny unused triggers
@ 2024-10-31 11:19 Mika Kuoppala
2024-10-31 12:55 ` ✓ Fi.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Mika Kuoppala @ 2024-10-31 11:19 UTC (permalink / raw)
To: igt-dev
Cc: Mika Kuoppala, Jan Sokolowski, Dominik Grzegorzek,
Christoph Manszewski
Assert that if you add a trigger, it is used.
Cc: Jan Sokolowski <jan.sokolowski@intel.com>
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Cc: Christoph Manszewski <christoph.manszewski@intel.com>
Signed-off-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
---
lib/xe/xe_eudebug.c | 29 ++++++++++++++++++++++++++---
1 file changed, 26 insertions(+), 3 deletions(-)
diff --git a/lib/xe/xe_eudebug.c b/lib/xe/xe_eudebug.c
index 74aa26024..97ed71838 100644
--- a/lib/xe/xe_eudebug.c
+++ b/lib/xe/xe_eudebug.c
@@ -20,6 +20,7 @@
struct event_trigger {
xe_eudebug_trigger_fn fn;
int type;
+ unsigned int count;
struct igt_list_head link;
};
@@ -1014,8 +1015,26 @@ static void debugger_run_triggers(struct xe_eudebug_debugger *d,
struct event_trigger *t;
igt_list_for_each_entry(t, &d->triggers, link) {
- if (e->type == t->type)
- t->fn(d, e);
+ if (e->type != t->type)
+ continue;
+
+ t->fn(d, e);
+ ++t->count;
+
+ igt_debug("Trigger run for %s:%d %d times\n",
+ type_to_str(t->type), t->type,
+ t->count);
+ }
+}
+
+static void debugger_check_triggers(struct xe_eudebug_debugger *d)
+{
+ struct event_trigger *t;
+
+ igt_list_for_each_entry(t, &d->triggers, link) {
+ igt_assert_f(READ_ONCE(t->count),
+ "Trigger %s(%d): was never invoked\n",
+ type_to_str(t->type), t->type);
}
}
@@ -1223,7 +1242,7 @@ void xe_eudebug_debugger_add_trigger(struct xe_eudebug_debugger *d,
t->fn = fn;
igt_list_add_tail(&t->link, &d->triggers);
- igt_debug("added trigger %p\n", t);
+ igt_debug("Trigger added for %s:%d\n", type_to_str(t->type), t->type);
}
/**
@@ -1303,6 +1322,8 @@ void xe_eudebug_debugger_stop_worker(struct xe_eudebug_debugger *d,
igt_assert_f(ret == 0 || ret != ESRCH,
"pthread join failed with error %d!\n", ret);
+ debugger_check_triggers(d);
+
event_log_sort(d->log);
}
@@ -1603,6 +1624,8 @@ void xe_eudebug_session_run(struct xe_eudebug_session *s)
*/
void xe_eudebug_session_check(struct xe_eudebug_session *s, bool match_opposite, uint32_t filter)
{
+ debugger_check_triggers(s->debugger);
+
xe_eudebug_event_log_compare(s->client->log, s->debugger->log, filter);
if (match_opposite)
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* ✓ Fi.CI.BAT: success for lib/xe/xe_eudebug: Deny unused triggers
2024-10-31 11:19 [PATCH i-g-t] lib/xe/xe_eudebug: Deny unused triggers Mika Kuoppala
@ 2024-10-31 12:55 ` Patchwork
2024-10-31 13:10 ` ✓ CI.xeBAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2024-10-31 12:55 UTC (permalink / raw)
To: Mika Kuoppala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4602 bytes --]
== Series Details ==
Series: lib/xe/xe_eudebug: Deny unused triggers
URL : https://patchwork.freedesktop.org/series/140763/
State : success
== Summary ==
CI Bug Log - changes from IGT_8091 -> IGTPW_12013
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/index.html
Participating hosts (46 -> 44)
------------------------------
Missing (2): bat-arls-2 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12013 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-arls-1: [PASS][1] -> [DMESG-FAIL][2] ([i915#10262] / [i915#10341] / [i915#12133])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-arls-1/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/bat-arls-1/igt@i915_selftest@live.html
- bat-arlh-3: [PASS][3] -> [ABORT][4] ([i915#12133])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-arlh-3/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/bat-arlh-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_contexts:
- bat-arls-1: [PASS][5] -> [DMESG-FAIL][6] ([i915#10262]) +31 other tests dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-arls-1/igt@i915_selftest@live@gt_contexts.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/bat-arls-1/igt@i915_selftest@live@gt_contexts.html
* igt@i915_selftest@live@gt_timelines:
- bat-arls-1: [PASS][7] -> [DMESG-WARN][8] ([i915#10341])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-arls-1/igt@i915_selftest@live@gt_timelines.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/bat-arls-1/igt@i915_selftest@live@gt_timelines.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][9] -> [ABORT][10] ([i915#12061])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/bat-arlh-3/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@gem_exec_fence@basic-await:
- bat-dg2-14: [FAIL][11] -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-dg2-14/igt@gem_exec_fence@basic-await.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/bat-dg2-14/igt@gem_exec_fence@basic-await.html
* igt@i915_selftest@live:
- bat-mtlp-6: [DMESG-WARN][13] ([i915#10341] / [i915#12133]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-mtlp-6/igt@i915_selftest@live.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/bat-mtlp-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@hangcheck:
- bat-mtlp-6: [DMESG-WARN][15] ([i915#11349] / [i915#12133]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@late_gt_pm:
- bat-atsm-1: [ABORT][17] ([i915#12133]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-atsm-1/igt@i915_selftest@live@late_gt_pm.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/bat-atsm-1/igt@i915_selftest@live@late_gt_pm.html
[i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8091 -> IGTPW_12013
* Linux: CI_DRM_15616 -> CI_DRM_15618
CI-20190529: 20190529
CI_DRM_15616: baf0f5492ee64d9edaa4a9aae47c7dc6dc3e2c31 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15618: d9e9e1b912c1ade4d9a46403c691ff3a13d8caaf @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12013: 6fa0e3c9df675d8f050bf38ba8f1ea7b5ce27787 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8091: 8091
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/index.html
[-- Attachment #2: Type: text/html, Size: 5933 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ CI.xeBAT: success for lib/xe/xe_eudebug: Deny unused triggers
2024-10-31 11:19 [PATCH i-g-t] lib/xe/xe_eudebug: Deny unused triggers Mika Kuoppala
2024-10-31 12:55 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2024-10-31 13:10 ` Patchwork
2024-10-31 17:12 ` ✗ CI.xeFULL: failure " Patchwork
2024-10-31 19:30 ` ✗ Fi.CI.IGT: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2024-10-31 13:10 UTC (permalink / raw)
To: Mika Kuoppala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2094 bytes --]
== Series Details ==
Series: lib/xe/xe_eudebug: Deny unused triggers
URL : https://patchwork.freedesktop.org/series/140763/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8091_BAT -> XEIGTPW_12013_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12013_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-adlp-7: [PASS][1] -> [INCOMPLETE][2] ([Intel XE#2874]) +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
#### Possible fixes ####
* igt@kms_addfb_basic@bad-pitch-0:
- bat-adlp-7: [DMESG-WARN][3] ([Intel XE#2496]) -> [PASS][4] +31 other tests pass
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
[Intel XE#2496]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2496
[Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
Build changes
-------------
* IGT: IGT_8091 -> IGTPW_12013
* Linux: xe-2149-54ceaf112b111612f3a7430132b2395fcce62414 -> xe-2151-fa53c85519aa642bf10aa1692a1b99d1930d2809
IGTPW_12013: 6fa0e3c9df675d8f050bf38ba8f1ea7b5ce27787 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8091: 8091
xe-2149-54ceaf112b111612f3a7430132b2395fcce62414: 54ceaf112b111612f3a7430132b2395fcce62414
xe-2151-fa53c85519aa642bf10aa1692a1b99d1930d2809: fa53c85519aa642bf10aa1692a1b99d1930d2809
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/index.html
[-- Attachment #2: Type: text/html, Size: 2692 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ CI.xeFULL: failure for lib/xe/xe_eudebug: Deny unused triggers
2024-10-31 11:19 [PATCH i-g-t] lib/xe/xe_eudebug: Deny unused triggers Mika Kuoppala
2024-10-31 12:55 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-10-31 13:10 ` ✓ CI.xeBAT: " Patchwork
@ 2024-10-31 17:12 ` Patchwork
2024-10-31 19:30 ` ✗ Fi.CI.IGT: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2024-10-31 17:12 UTC (permalink / raw)
To: Mika Kuoppala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 90575 bytes --]
== Series Details ==
Series: lib/xe/xe_eudebug: Deny unused triggers
URL : https://patchwork.freedesktop.org/series/140763/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8091_full -> XEIGTPW_12013_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12013_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12013_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 (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12013_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6.html
* igt@xe_exec_sip_eudebug@wait-writesip-nodebug:
- shard-lnl: [PASS][2] -> [FAIL][3] +1 other test fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-6/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-6/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: NOTRUN -> [SKIP][4] +4 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-463/igt@xe_sriov_flr@flr-vf1-clear.html
#### Warnings ####
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: [SKIP][5] ([Intel XE#3309]) -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-464/igt@kms_pm_dc@dc5-retention-flops.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_pm_dc@dc5-retention-flops.html
Known issues
------------
Here are the changes found in XEIGTPW_12013_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_setmaster@master-drop-set-root:
- shard-bmg: [PASS][7] -> [FAIL][8] ([Intel XE#3130] / [Intel XE#3193])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-6/igt@core_setmaster@master-drop-set-root.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@core_setmaster@master-drop-set-root.html
- shard-dg2-set2: [PASS][9] -> [FAIL][10] ([Intel XE#3130] / [Intel XE#3249])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1466])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-bmg: [PASS][13] -> [SKIP][14] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-6/igt@kms_big_fb@linear-8bpp-rotate-180.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_big_fb@linear-8bpp-rotate-180.html
- shard-dg2-set2: [PASS][15] -> [SKIP][16] ([Intel XE#2890]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-436/igt@kms_big_fb@linear-8bpp-rotate-180.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316]) +4 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +9 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#2191])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#367]) +4 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#787]) +69 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +4 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#2890]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2907]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2887])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +16 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][28] ([Intel XE#1195])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#306])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-1/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#306])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#373]) +8 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#2423] / [i915#2575]) +5 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#373]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-2/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2252]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-2/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#307])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][36] ([Intel XE#1178]) +1 other test fail
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][37] ([Intel XE#1188]) +1 other test fail
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [PASS][38] -> [DMESG-WARN][39] ([Intel XE#877])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#309])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-dg2-set2: [PASS][41] -> [FAIL][42] ([Intel XE#1475])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-466/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-436/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][43] ([Intel XE#2141]) +1 other test fail
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#701])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#703])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-463/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][46] -> [FAIL][47] ([Intel XE#301]) +8 other tests fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][48] -> [FAIL][49] ([Intel XE#301]) +4 other tests fail
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1421]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-8/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#3007]) +10 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1:
- shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#886]) +4 other tests fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][55] ([Intel XE#301]) +12 other tests fail
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [FAIL][56] ([Intel XE#3267]) +1 other test fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [PASS][57] -> [INCOMPLETE][58] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-dp4:
- shard-dg2-set2: [PASS][59] -> [INCOMPLETE][60] ([Intel XE#1195] / [Intel XE#2049])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2293] / [Intel XE#2380])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1401] / [Intel XE#1745])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1401])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2293]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#651])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#651]) +26 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#2351] / [Intel XE#2890])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#658])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#656]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#653]) +38 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2313])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#605])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2-set2: NOTRUN -> [FAIL][73] ([Intel XE#3312]) +2 other tests fail
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-436/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_invalid_mode@clock-too-high:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1450] / [Intel XE#2568])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-5/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1450]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-5/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#2925])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-464/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2927])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2486])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-8/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_lowres@tiling-x:
- shard-dg2-set2: [PASS][79] -> [SKIP][80] ([Intel XE#2423] / [i915#2575]) +7 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_plane_lowres@tiling-x.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#2763]) +5 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2763]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#870]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1122]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-436/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][86] -> [FAIL][87] ([Intel XE#718])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][88] -> [FAIL][89] ([Intel XE#1430])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#1129])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#2893])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#1489]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#1489]) +7 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-464/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-cursor-render@edp-1:
- shard-lnl: [PASS][94] -> [FAIL][95] ([Intel XE#2808]) +1 other test fail
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-432/igt@kms_psr@psr-dpms.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#327])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-463/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1127])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1435])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-4/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#362])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [PASS][101] -> [FAIL][102] ([Intel XE#899])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#455]) +14 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#756])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01:
- shard-dg2-set2: [PASS][105] -> [ABORT][106] ([Intel XE#2625]) +1 other test abort
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-436/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-432/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_eudebug@discovery-empty-clients:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2905])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-5/igt@xe_eudebug@discovery-empty-clients.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2905]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-2/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_eudebug_online@resume-dss:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2905]) +6 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-434/igt@xe_eudebug_online@resume-dss.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [PASS][111] -> [TIMEOUT][112] ([Intel XE#1473])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][113] ([Intel XE#1473] / [Intel XE#402])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-small-external:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#688])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-3/igt@xe_evict@evict-beng-small-external.html
* igt@xe_exec_basic@many-execqueues-basic-defer-mmap:
- shard-dg2-set2: [PASS][115] -> [SKIP][116] ([Intel XE#1130]) +11 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@xe_exec_basic@many-execqueues-basic-defer-mmap.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@xe_exec_basic@many-execqueues-basic-defer-mmap.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [FAIL][117] ([Intel XE#3160])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-5/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race:
- shard-bmg: [PASS][118] -> [FAIL][119] ([Intel XE#3160]) +1 other test fail
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-5/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm:
- shard-bmg: NOTRUN -> [FAIL][120] ([Intel XE#3160]) +1 other test fail
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-4/igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#288]) +32 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-432/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2360])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-433/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate:
- shard-bmg: [PASS][123] -> [SKIP][124] ([Intel XE#1130]) +20 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-2/igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html
* igt@xe_exec_threads@threads-hang-fd-userptr:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#1130])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@xe_exec_threads@threads-hang-fd-userptr.html
* igt@xe_gt_freq@freq_reset_multiple:
- shard-lnl: [PASS][126] -> [DMESG-WARN][127] ([Intel XE#3184])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-1/igt@xe_gt_freq@freq_reset_multiple.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-6/igt@xe_gt_freq@freq_reset_multiple.html
* igt@xe_live_ktest@xe_bo:
- shard-lnl: [PASS][128] -> [SKIP][129] ([Intel XE#1192])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-1/igt@xe_live_ktest@xe_bo.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-5/igt@xe_live_ktest@xe_bo.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#560])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-432/igt@xe_media_fill@media-fill.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2541]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-434/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2838] / [Intel XE#979])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-464/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#979])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#2284] / [Intel XE#366])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-436/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-dg2-set2: NOTRUN -> [ABORT][135] ([Intel XE#1694])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-dg2-set2: [PASS][136] -> [ABORT][137] ([Intel XE#1358] / [Intel XE#1794])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-434/igt@xe_pm@s3-d3hot-basic-exec.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-432/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s4-basic:
- shard-dg2-set2: NOTRUN -> [ABORT][138] ([Intel XE#1358])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-433/igt@xe_pm@s4-basic.html
* igt@xe_pm_residency@gt-c6-freeze:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#1130]) +5 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@xe_pm_residency@gt-c6-freeze.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#944]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-434/igt@xe_query@multigpu-query-mem-usage.html
#### Possible fixes ####
* igt@core_hotunplug@unplug-rescan:
- shard-lnl: [DMESG-WARN][141] -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-6/igt@core_hotunplug@unplug-rescan.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-8/igt@core_hotunplug@unplug-rescan.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-bmg: [SKIP][143] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][144] +2 other tests pass
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-5/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][145] ([Intel XE#1195]) -> [PASS][146]
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][147] ([Intel XE#3113]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][149] ([Intel XE#877]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [FAIL][151] ([Intel XE#1475]) -> [PASS][152]
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-466/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-432/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
- shard-lnl: [FAIL][153] ([Intel XE#1475]) -> [PASS][154]
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][155] ([Intel XE#301]) -> [PASS][156] +2 other tests pass
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4:
- shard-dg2-set2: [ABORT][157] -> [PASS][158]
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [FAIL][159] ([Intel XE#2882]) -> [PASS][160] +1 other test pass
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1:
- shard-lnl: [FAIL][161] ([Intel XE#886]) -> [PASS][162] +2 other tests pass
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-4/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: [FAIL][163] ([Intel XE#301]) -> [PASS][164] +6 other tests pass
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible:
- shard-bmg: [INCOMPLETE][165] ([Intel XE#2635]) -> [PASS][166]
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-2/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible@c-dp2:
- shard-bmg: [INCOMPLETE][167] -> [PASS][168] +1 other test pass
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@kms_flip@modeset-vs-vblank-race-interruptible@c-dp2.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-2/igt@kms_flip@modeset-vs-vblank-race-interruptible@c-dp2.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][169] ([Intel XE#2890]) -> [PASS][170] +3 other tests pass
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][171] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][172] +3 other tests pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: [SKIP][173] ([Intel XE#2423] / [i915#2575]) -> [PASS][174] +12 other tests pass
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_hdmi_inject@inject-audio.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-436/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-bmg: [SKIP][175] ([Intel XE#3007]) -> [PASS][176] +15 other tests pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_plane@plane-panning-bottom-right-suspend.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-2/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: [FAIL][177] ([Intel XE#616]) -> [PASS][178] +1 other test pass
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-464/igt@kms_plane_cursor@viewport.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_plane_cursor@viewport.html
- shard-lnl: [FAIL][179] ([Intel XE#1471]) -> [PASS][180]
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-2/igt@kms_plane_cursor@viewport.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-2/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-64:
- shard-lnl: [FAIL][181] ([Intel XE#1874]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-2/igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-64.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-2/igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-64.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][183] ([Intel XE#1430]) -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [ABORT][185] ([Intel XE#2625]) -> [PASS][186] +3 other tests pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-432/igt@kms_pm_rpm@system-suspend-modeset.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-463/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue:
- shard-lnl: [FAIL][187] ([Intel XE#2667]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-8/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-5/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [TIMEOUT][189] ([Intel XE#1473]) -> [PASS][190]
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [TIMEOUT][191] ([Intel XE#1473]) -> [PASS][192] +1 other test pass
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-small.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-433/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-bmg: [TIMEOUT][193] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][194]
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-5/igt@xe_evict@evict-mixed-threads-large.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-6/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race:
- shard-bmg: [FAIL][195] ([Intel XE#3160]) -> [PASS][196] +2 other tests pass
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-5/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-5/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm:
- shard-lnl: [FAIL][197] ([Intel XE#3320]) -> [PASS][198]
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-8/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch:
- shard-lnl: [FAIL][199] ([Intel XE#3160]) -> [PASS][200] +3 other tests pass
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-1/igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-6/igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm:
- shard-bmg: [SKIP][201] ([Intel XE#1130]) -> [PASS][202] +36 other tests pass
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-5/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html
* igt@xe_exec_threads@threads-cm-fd-basic:
- shard-dg2-set2: [SKIP][203] ([Intel XE#1130]) -> [PASS][204] +22 other tests pass
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@xe_exec_threads@threads-cm-fd-basic.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@xe_exec_threads@threads-cm-fd-basic.html
* igt@xe_live_ktest@xe_mocs:
- shard-lnl: [SKIP][205] ([Intel XE#1192]) -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-1/igt@xe_live_ktest@xe_mocs.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-7/igt@xe_live_ktest@xe_mocs.html
* igt@xe_oa@mmio-triggered-reports:
- shard-bmg: [FAIL][207] ([Intel XE#2249]) -> [PASS][208] +1 other test pass
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@xe_oa@mmio-triggered-reports.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@xe_oa@mmio-triggered-reports.html
- shard-lnl: [FAIL][209] ([Intel XE#2249]) -> [PASS][210] +1 other test pass
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-7/igt@xe_oa@mmio-triggered-reports.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-6/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@oa-regs-whitelisted@ccs-0:
- shard-bmg: [FAIL][211] ([Intel XE#2514]) -> [PASS][212] +1 other test pass
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@xe_oa@oa-regs-whitelisted@ccs-0.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-5/igt@xe_oa@oa-regs-whitelisted@ccs-0.html
* igt@xe_oa@oa-regs-whitelisted@rcs-0:
- shard-lnl: [FAIL][213] ([Intel XE#2514]) -> [PASS][214] +1 other test pass
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-4/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
* igt@xe_pm@d3hot-basic-exec:
- shard-lnl: [DMESG-WARN][215] ([Intel XE#3184]) -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-2/igt@xe_pm@d3hot-basic-exec.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-4/igt@xe_pm@d3hot-basic-exec.html
* igt@xe_pm@s3-mocs:
- shard-dg2-set2: [ABORT][217] ([Intel XE#1794]) -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-432/igt@xe_pm@s3-mocs.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-463/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [ABORT][219] ([Intel XE#1794]) -> [PASS][220]
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-1/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_tlb@basic-tlb:
- shard-lnl: [CRASH][221] ([Intel XE#3212]) -> [PASS][222]
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-8/igt@xe_tlb@basic-tlb.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-lnl-3/igt@xe_tlb@basic-tlb.html
#### Warnings ####
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: [SKIP][223] ([Intel XE#2327]) -> [SKIP][224] ([Intel XE#2231] / [Intel XE#2890])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
- shard-dg2-set2: [SKIP][225] ([Intel XE#316]) -> [SKIP][226] ([Intel XE#2890])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-466/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-bmg: [SKIP][227] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][228] ([Intel XE#1124])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-bmg: [SKIP][229] ([Intel XE#1124]) -> [SKIP][230] ([Intel XE#2231] / [Intel XE#2890])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][231] ([Intel XE#2890]) -> [SKIP][232] ([Intel XE#1124])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][233] ([Intel XE#367]) -> [SKIP][234] ([Intel XE#2423] / [i915#2575])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
- shard-bmg: [SKIP][235] ([Intel XE#367]) -> [SKIP][236] ([Intel XE#3007])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: [SKIP][237] ([Intel XE#3007]) -> [SKIP][238] ([Intel XE#367])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
- shard-dg2-set2: [SKIP][239] ([Intel XE#2423] / [i915#2575]) -> [SKIP][240] ([Intel XE#367])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-bmg: [SKIP][241] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][242] ([Intel XE#2887]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
- shard-dg2-set2: [SKIP][243] ([Intel XE#2890]) -> [SKIP][244] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-464/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][245] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][246] ([Intel XE#2890]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][247] ([Intel XE#2887]) -> [SKIP][248] ([Intel XE#2231] / [Intel XE#2890]) +4 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
- shard-dg2-set2: [INCOMPLETE][249] ([Intel XE#1195] / [Intel XE#1727]) -> [SKIP][250] ([Intel XE#2890])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: [SKIP][251] ([Intel XE#3007]) -> [SKIP][252] ([Intel XE#2325])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_chamelium_color@ctm-blue-to-red.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-4/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-bmg: [SKIP][253] ([Intel XE#3007]) -> [SKIP][254] ([Intel XE#2252]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
- shard-dg2-set2: [SKIP][255] ([Intel XE#2423] / [i915#2575]) -> [SKIP][256] ([Intel XE#373]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-463/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: [SKIP][257] ([Intel XE#2252]) -> [SKIP][258] ([Intel XE#3007]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-5/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: [SKIP][259] ([Intel XE#3007]) -> [SKIP][260] ([Intel XE#2390])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2-set2: [SKIP][261] ([Intel XE#2423] / [i915#2575]) -> [SKIP][262] ([Intel XE#307])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_content_protection@dp-mst-type-1.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-433/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2-set2: [INCOMPLETE][263] ([Intel XE#1195] / [Intel XE#2715]) -> [FAIL][264] ([Intel XE#1178]) +1 other test fail
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-434/igt@kms_content_protection@legacy.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-434/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2-set2: [SKIP][265] ([Intel XE#2423] / [i915#2575]) -> [SKIP][266] ([Intel XE#455]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_cursor_crc@cursor-random-max-size.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@kms_cursor_crc@cursor-random-max-size.html
- shard-bmg: [SKIP][267] ([Intel XE#3007]) -> [SKIP][268] ([Intel XE#2320])
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_cursor_crc@cursor-random-max-size.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-2/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-bmg: [SKIP][269] ([Intel XE#2320]) -> [SKIP][270] ([Intel XE#3007])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: [SKIP][271] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][272] ([Intel XE#2141])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: [SKIP][273] ([Intel XE#2374]) -> [SKIP][274] ([Intel XE#3007])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-6/igt@kms_feature_discovery@psr1.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_feature_discovery@psr1.html
- shard-dg2-set2: [SKIP][275] ([Intel XE#1135]) -> [SKIP][276] ([Intel XE#2423] / [i915#2575])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-436/igt@kms_feature_discovery@psr1.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_feature_discovery@psr1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-bmg: [SKIP][277] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][278] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][279] ([Intel XE#2890]) -> [SKIP][280] ([Intel XE#455]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][281] ([Intel XE#651]) -> [SKIP][282] ([Intel XE#2890]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][283] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][284] ([Intel XE#2333]) +3 other tests fail
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
- shard-bmg: [FAIL][285] ([Intel XE#2333]) -> [SKIP][286] ([Intel XE#2231] / [Intel XE#2890])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render:
- shard-bmg: [SKIP][287] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][288] ([Intel XE#2311]) +6 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html
- shard-dg2-set2: [SKIP][289] ([Intel XE#2890]) -> [SKIP][290] ([Intel XE#651]) +6 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
- shard-bmg: [SKIP][291] ([Intel XE#2311]) -> [SKIP][292] ([Intel XE#2231] / [Intel XE#2890]) +3 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
- shard-dg2-set2: [SKIP][293] ([Intel XE#651]) -> [SKIP][294] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][295] ([Intel XE#653]) -> [SKIP][296] ([Intel XE#2351] / [Intel XE#2890]) +2 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][297] ([Intel XE#2313]) -> [SKIP][298] ([Intel XE#2231] / [Intel XE#2890]) +3 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][299] ([Intel XE#653]) -> [SKIP][300] ([Intel XE#2890])
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][301] ([Intel XE#2890]) -> [SKIP][302] ([Intel XE#653]) +5 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-bmg: [SKIP][303] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][304] ([Intel XE#2313]) +5 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: [SKIP][305] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][306] ([Intel XE#2934])
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_joiner@basic-force-ultra-joiner.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-2/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-bmg: [SKIP][307] ([Intel XE#3007]) -> [SKIP][308] ([Intel XE#2763])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
- shard-dg2-set2: [SKIP][309] ([Intel XE#2423] / [i915#2575]) -> [SKIP][310] ([Intel XE#2763] / [Intel XE#455])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: [SKIP][311] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][312] ([Intel XE#870])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_pm_backlight@bad-brightness.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-6/igt@kms_pm_backlight@bad-brightness.html
- shard-dg2-set2: [SKIP][313] ([Intel XE#2890]) -> [SKIP][314] ([Intel XE#870])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: [SKIP][315] ([Intel XE#870]) -> [SKIP][316] ([Intel XE#2231] / [Intel XE#2890])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@kms_pm_backlight@basic-brightness.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_pm_backlight@basic-brightness.html
- shard-dg2-set2: [SKIP][317] ([Intel XE#870]) -> [SKIP][318] ([Intel XE#2890])
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-464/igt@kms_pm_backlight@basic-brightness.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: [SKIP][319] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][320] ([Intel XE#2392])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_pm_dc@dc5-psr.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-4/igt@kms_pm_dc@dc5-psr.html
- shard-dg2-set2: [SKIP][321] ([Intel XE#2890]) -> [SKIP][322] ([Intel XE#1129])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_pm_dc@dc5-psr.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-433/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: [SKIP][323] ([Intel XE#3309]) -> [SKIP][324] ([Intel XE#2231] / [Intel XE#2890])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@kms_pm_dc@dc5-retention-flops.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: [SKIP][325] ([Intel XE#1489]) -> [SKIP][326] ([Intel XE#2231] / [Intel XE#2890])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
- shard-dg2-set2: [SKIP][327] ([Intel XE#1489]) -> [SKIP][328] ([Intel XE#2890])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-434/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-bmg: [SKIP][329] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][330] ([Intel XE#1489])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
- shard-dg2-set2: [SKIP][331] ([Intel XE#2890]) -> [SKIP][332] ([Intel XE#1489])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2-set2: [SKIP][333] ([Intel XE#2890]) -> [SKIP][334] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_psr@fbc-psr-cursor-plane-move.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-436/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-bmg: [SKIP][335] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][336] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-2/igt@kms_psr@fbc-psr-primary-blt.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: [SKIP][337] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][338] ([Intel XE#2890])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-434/igt@kms_psr@pr-sprite-blt.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@pr-sprite-render:
- shard-bmg: [SKIP][339] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][340] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_psr@pr-sprite-render.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-6/igt@kms_psr@pr-sprite-render.html
- shard-dg2-set2: [SKIP][341] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][342] ([Intel XE#2850] / [Intel XE#929])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_psr@pr-sprite-render.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-434/igt@kms_psr@pr-sprite-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: [SKIP][343] ([Intel XE#3007]) -> [SKIP][344] ([Intel XE#2329])
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg2-set2: [SKIP][345] ([Intel XE#2423] / [i915#2575]) -> [SKIP][346] ([Intel XE#327])
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: [SKIP][347] ([Intel XE#2329]) -> [SKIP][348] ([Intel XE#3007])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
- shard-dg2-set2: [SKIP][349] ([Intel XE#327]) -> [SKIP][350] ([Intel XE#2423] / [i915#2575])
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-bmg: [SKIP][351] ([Intel XE#3007]) -> [SKIP][352] ([Intel XE#2413])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-full.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][353] ([Intel XE#1729]) -> [SKIP][354] ([Intel XE#2426])
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_eudebug@basic-read-event:
- shard-bmg: [SKIP][355] ([Intel XE#1130]) -> [SKIP][356] ([Intel XE#2905]) +2 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@xe_eudebug@basic-read-event.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-5/igt@xe_eudebug@basic-read-event.html
- shard-dg2-set2: [SKIP][357] ([Intel XE#1130]) -> [SKIP][358] ([Intel XE#2905]) +2 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@xe_eudebug@basic-read-event.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug@basic-vm-bind-extended-discovery:
- shard-dg2-set2: [SKIP][359] ([Intel XE#2905]) -> [SKIP][360] ([Intel XE#1130]) +1 other test skip
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
* igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram:
- shard-bmg: [SKIP][361] ([Intel XE#2905]) -> [SKIP][362] ([Intel XE#1130]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-7/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm:
- shard-dg2-set2: [SKIP][363] ([Intel XE#1130]) -> [SKIP][364] ([Intel XE#288]) +5 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
- shard-bmg: [SKIP][365] ([Intel XE#1130]) -> [FAIL][366] ([Intel XE#3320])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch:
- shard-dg2-set2: [SKIP][367] ([Intel XE#288]) -> [SKIP][368] ([Intel XE#1130]) +2 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html
* igt@xe_oa@mi-rpc:
- shard-dg2-set2: [SKIP][369] ([Intel XE#1130]) -> [SKIP][370] ([Intel XE#2541])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@xe_oa@mi-rpc.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-435/igt@xe_oa@mi-rpc.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][371] ([Intel XE#2541]) -> [SKIP][372] ([Intel XE#1130])
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: [SKIP][373] ([Intel XE#1130]) -> [SKIP][374] ([Intel XE#944])
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html
- shard-bmg: [SKIP][375] ([Intel XE#1130]) -> [SKIP][376] ([Intel XE#944])
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-bmg-5/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_tlb@basic-tlb:
- shard-dg2-set2: [SKIP][377] ([Intel XE#1130]) -> [FAIL][378] ([Intel XE#2922])
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@xe_tlb@basic-tlb.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/shard-dg2-432/igt@xe_tlb@basic-tlb.html
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1471
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[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#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[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#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2808]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2808
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3130
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3160]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3160
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#3193]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3193
[Intel XE#3212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3212
[Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
[Intel XE#3267]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3267
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3312
[Intel XE#3320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3320
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8091 -> IGTPW_12013
* Linux: xe-2149-54ceaf112b111612f3a7430132b2395fcce62414 -> xe-2151-fa53c85519aa642bf10aa1692a1b99d1930d2809
IGTPW_12013: 6fa0e3c9df675d8f050bf38ba8f1ea7b5ce27787 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8091: 8091
xe-2149-54ceaf112b111612f3a7430132b2395fcce62414: 54ceaf112b111612f3a7430132b2395fcce62414
xe-2151-fa53c85519aa642bf10aa1692a1b99d1930d2809: fa53c85519aa642bf10aa1692a1b99d1930d2809
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12013/index.html
[-- Attachment #2: Type: text/html, Size: 112831 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Fi.CI.IGT: failure for lib/xe/xe_eudebug: Deny unused triggers
2024-10-31 11:19 [PATCH i-g-t] lib/xe/xe_eudebug: Deny unused triggers Mika Kuoppala
` (2 preceding siblings ...)
2024-10-31 17:12 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-10-31 19:30 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2024-10-31 19:30 UTC (permalink / raw)
To: Mika Kuoppala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100259 bytes --]
== Series Details ==
Series: lib/xe/xe_eudebug: Deny unused triggers
URL : https://patchwork.freedesktop.org/series/140763/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15618_full -> IGTPW_12013_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12013_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12013_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/index.html
Participating hosts (10 -> 9)
------------------------------
Additional (1): shard-glk-0
Missing (2): shard-snb-0 shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12013_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-mtlp: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-17/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][4] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-10/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-3.html
Known issues
------------
Here are the changes found in IGTPW_12013_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-15/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-1/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8411]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#8411]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#9318])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-9/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +9 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-10/igt@drm_fdinfo@busy-check-all@vecs1.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#7697]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-3/igt@gem_basic@multigpu-create-close.html
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-13/igt@gem_basic@multigpu-create-close.html
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-4/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-11/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@close-race:
- shard-rkl: NOTRUN -> [FAIL][16] ([i915#12297] / [i915#12577])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-7/igt@gem_busy@close-race.html
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-3/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-12/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#6335])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#8562])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-14/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: NOTRUN -> [FAIL][22] ([i915#12031])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-3/igt@gem_ctx_engines@invalid-engines.html
- shard-tglu: NOTRUN -> [FAIL][23] ([i915#12031])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-4/igt@gem_ctx_engines@invalid-engines.html
- shard-mtlp: NOTRUN -> [FAIL][24] ([i915#12031])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-7/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@engines-persistence:
- shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +4 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-snb2/igt@gem_ctx_persistence@engines-persistence.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-8/igt@gem_ctx_persistence@hang.html
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-11/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#8555]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@hostile:
- shard-rkl: NOTRUN -> [FAIL][29] ([i915#11980] / [i915#12580])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-2/igt@gem_ctx_persistence@hostile.html
- shard-dg1: NOTRUN -> [FAIL][30] ([i915#11980] / [i915#12580])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-15/igt@gem_ctx_persistence@hostile.html
- shard-tglu: NOTRUN -> [FAIL][31] ([i915#11980] / [i915#12580])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-7/igt@gem_ctx_persistence@hostile.html
- shard-mtlp: NOTRUN -> [FAIL][32] ([i915#11980] / [i915#12580])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-1/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#280])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-2/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-tglu-1: NOTRUN -> [SKIP][34] ([i915#280])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][35] ([i915#280])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#280])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg1: [PASS][37] -> [ABORT][38] ([i915#7975] / [i915#8213])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg1-15/igt@gem_eio@hibernate.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-14/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4771])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4771])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-19/igt@gem_exec_balancer@bonded-sync.html
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4771])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-4/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4036])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-8/igt@gem_exec_balancer@invalid-bonds.html
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#4036])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-12/igt@gem_exec_balancer@invalid-bonds.html
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4036])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-8/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#4525]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_big@single:
- shard-tglu: [PASS][46] -> [ABORT][47] ([i915#11713])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-tglu-7/igt@gem_exec_big@single.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-5/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible:
- shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#6334]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: NOTRUN -> [FAIL][49] ([i915#2846])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: NOTRUN -> [FAIL][50] ([i915#2842]) +3 other tests fail
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-solo:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4473])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-1/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-pace:
- shard-rkl: NOTRUN -> [FAIL][52] ([i915#2842]) +5 other tests fail
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-1/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-share:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#3539] / [i915#4852]) +6 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-2/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-sync:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3539])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-16/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4812]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-5/igt@gem_exec_fence@submit3.html
* igt@gem_exec_fence@submit67:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4812])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-17/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#3539] / [i915#4852]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-13/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#5107])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3281]) +5 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3281]) +14 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#3281]) +8 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-17/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3281]) +17 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-3/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_schedule@pi-common@vcs0:
- shard-rkl: NOTRUN -> [FAIL][63] ([i915#12296]) +4 other tests fail
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-7/igt@gem_exec_schedule@pi-common@vcs0.html
* igt@gem_exec_schedule@pi-common@vecs0:
- shard-dg2: NOTRUN -> [FAIL][64] ([i915#12296]) +7 other tests fail
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-8/igt@gem_exec_schedule@pi-common@vecs0.html
* igt@gem_exec_schedule@pi-ringfull@vecs0:
- shard-tglu-1: NOTRUN -> [FAIL][65] ([i915#12296]) +5 other tests fail
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@gem_exec_schedule@pi-ringfull@vecs0.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4537] / [i915#4812])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4860]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4860]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-1/igt@gem_fenced_exec_thrash@2-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4860])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-6/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu-1: NOTRUN -> [SKIP][70] ([i915#2190])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#4613] / [i915#7582])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#4613]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-6/igt@gem_lmem_swapping@heavy-random.html
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4613]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-4/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#4613]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-4/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#4613]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#284])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-4/igt@gem_media_vme.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4083]) +7 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-4/igt@gem_mmap_wc@invalid-flags.html
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4083]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-8/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4083]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-16/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#3282]) +6 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-6/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#3282]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-13/igt@gem_pwrite@basic-exhaustion.html
- shard-snb: NOTRUN -> [WARN][82] ([i915#2658])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-snb4/igt@gem_pwrite@basic-exhaustion.html
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3282]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-7/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4270]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-7/igt@gem_pxp@display-protected-crc.html
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4270]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-18/igt@gem_pxp@display-protected-crc.html
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4270])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-1/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#4270]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#4270]) +5 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#4270]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#5190] / [i915#8428]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-10/igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs.html
* igt@gem_render_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4079])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-19/igt@gem_render_tiled_blits@basic.html
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4079])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-7/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#4079]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-10/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#3282]) +6 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#4077]) +13 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-3/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#3323])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#3297]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-15/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#3297] / [i915#4880]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#4880])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-13/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][100] ([i915#3297]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-2/igt@gem_userptr_blits@readonly-pwrite-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#3297]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#3297]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-3/igt@gem_userptr_blits@unsync-unmap.html
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#3297]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#3297]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][105] +20 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-10/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#2856]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-1/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#2527] / [i915#2856]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-6/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#2527]) +7 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-4/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#2527] / [i915#2856])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@gen9_exec_parse@bb-large.html
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#2527]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-16/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#2856]) +5 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-3/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [PASS][112] -> [ABORT][113] ([i915#9820])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#6412])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-6/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#8399]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#6590]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-tglu-1: NOTRUN -> [WARN][117] ([i915#2681]) +4 other tests warn
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#11681] / [i915#6621]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-3/igt@i915_pm_rps@min-max-config-idle.html
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#11681] / [i915#6621]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-15/igt@i915_pm_rps@min-max-config-idle.html
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#11681] / [i915#6621]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-1/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#11681])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-13/igt@i915_pm_rps@thresholds-park.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#5723])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-2/igt@i915_query@test-query-geometry-subslices.html
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#5723])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4077]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-5/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#7707])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#7707])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-4/igt@intel_hwmon@hwmon-write.html
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#7707])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-7/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#4212])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-2/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#12454])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#8709]) +7 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#9531])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#1769] / [i915#3555])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#1769] / [i915#3555])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#1769] / [i915#3555])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5286]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-15/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#5286]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#5286]) +8 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#5286]) +4 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][139] +8 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-7/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#3638]) +5 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#3638]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-17/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#5190]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb.html
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6187])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#4538] / [i915#5190]) +14 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#4538]) +4 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#6095]) +64 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6095]) +29 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-3/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#12313])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#6095]) +99 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#6095]) +44 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#12313])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#6095]) +101 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#12313])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#10307] / [i915#6095]) +180 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#12313]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-14/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#3742])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#11616] / [i915#7213]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-b-dp-3.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#3742])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-1/igt@kms_cdclk@plane-scaling.html
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#3742])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-15/igt@kms_cdclk@plane-scaling.html
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#3742])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-9/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#4087]) +4 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#4087]) +4 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-1/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#7828]) +12 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-7/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#7828]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#7828]) +7 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#7828]) +4 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#7828]) +16 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#7828]) +6 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-8/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#3299])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#3299])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-19/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#3116]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [TIMEOUT][174] ([i915#7173])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-10/igt@kms_content_protection@legacy@pipe-a-dp-3.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#6944] / [i915#9424])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-6/igt@kms_content_protection@lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#6944] / [i915#9424])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-4/igt@kms_content_protection@lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#9424]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-6/igt@kms_content_protection@lic-type-0.html
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#9424])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@kms_content_protection@lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#9424])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-19/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#7118])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-5/igt@kms_content_protection@srm.html
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#7118])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#7118] / [i915#9424])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-3/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8814]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#3555]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#3555]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#11453] / [i915#3359])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#8814])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#3555]) +7 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#3555]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#11453] / [i915#3359])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#9809]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#4103])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#9067])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#9067])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#4103])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#4103])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#4103] / [i915#4213])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#8588])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-1/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#8588])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-7/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#3804])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#3804])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#8812])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-3/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3840])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#3840])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-6/igt@kms_dsc@dsc-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3840])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-1/igt@kms_dsc@dsc-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#3840])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-15/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3840]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-8/igt@kms_dsc@dsc-with-formats.html
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#3840])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#3840] / [i915#9053])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#3469])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-3/igt@kms_fbcon_fbt@psr.html
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#3469])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-14/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#3955]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#4854])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#1839])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#1839]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-4/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#3637]) +5 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3637]) +3 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#3637]) +3 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#9934]) +4 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-15/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#8381])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-12/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#8381])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-10/igt@kms_flip@flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8381])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-3/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@plain-flip-ts-check:
- shard-rkl: [PASS][223] -> [FAIL][224] ([i915#12457] / [i915#2122])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-rkl-3/igt@kms_flip@plain-flip-ts-check.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-2/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_flip@plain-flip-ts-check@a-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][225] ([i915#2122])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-2/igt@kms_flip@plain-flip-ts-check@a-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check@b-vga1:
- shard-snb: [PASS][226] -> [FAIL][227] ([i915#2122]) +2 other tests fail
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-snb6/igt@kms_flip@plain-flip-ts-check@b-vga1.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-snb1/igt@kms_flip@plain-flip-ts-check@b-vga1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#2672]) +6 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#2587] / [i915#2672]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#2672] / [i915#3555]) +6 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#2672]) +6 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#2672] / [i915#8813])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#2587] / [i915#2672]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555]) +5 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [PASS][241] -> [FAIL][242] ([i915#6880])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-snb: [PASS][243] -> [SKIP][244] +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#1825]) +15 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][246] +62 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#5439])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][248] +41 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#8708]) +10 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#8708]) +4 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#3458]) +6 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#3023]) +40 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#1825]) +66 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-snb: NOTRUN -> [SKIP][254] +199 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#5354]) +60 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#3458]) +20 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#8708]) +19 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][258] +65 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#6118])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-11/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#8228])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-4/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8228])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-4/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle:
- shard-dg2: [PASS][262] -> [SKIP][263] ([i915#3555] / [i915#8228])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg2-10/igt@kms_hdr@static-toggle.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-8/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8228])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#12394])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-3/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#12339])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-8/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#10656])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#1839])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-14/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#6301])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-11/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#6301])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-19/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-dg1: NOTRUN -> [SKIP][271] +37 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-13/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8821])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#3555]) +9 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#5354] / [i915#9423])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-tglu: NOTRUN -> [FAIL][275] ([i915#8292]) +1 other test fail
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-8/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#12247]) +7 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#12247] / [i915#12504]) +3 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#12247]) +4 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#12247]) +5 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#12247] / [i915#6953])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#12247] / [i915#9423])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#12247]) +3 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#12247] / [i915#6953])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#12247]) +13 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#12247] / [i915#3555] / [i915#6953])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#12247]) +7 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#6953])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#12343])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#12343])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-6/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#9812])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-9/igt@kms_pm_backlight@fade.html
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#5354])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-2/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#9812])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#3828])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [PASS][294] -> [SKIP][295] ([i915#4281])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#3828])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#8430])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#9519]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html
- shard-rkl: [PASS][299] -> [SKIP][300] ([i915#9519])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#9519])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@pm-caching:
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#4077]) +7 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-19/igt@kms_pm_rpm@pm-caching.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#6524])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-5/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#6524] / [i915#6805])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-1/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#6524])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#6524])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-4/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][307] ([i915#12316]) +2 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#11520]) +11 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#11520]) +12 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#9808])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#11520]) +3 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][312] ([i915#11520]) +4 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-snb1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#11520]) +6 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#11520]) +7 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-17/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#9683])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-mtlp: NOTRUN -> [SKIP][316] ([i915#4348])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-5/igt@kms_psr2_su@page_flip-nv12.html
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#9683])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-5/igt@kms_psr2_su@page_flip-nv12.html
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#9683])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-3/igt@kms_psr2_su@page_flip-nv12.html
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#9683])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-14/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@pr-basic:
- shard-tglu: NOTRUN -> [SKIP][320] ([i915#9732]) +14 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-5/igt@kms_psr@pr-basic.html
- shard-mtlp: NOTRUN -> [SKIP][321] ([i915#9688]) +8 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-8/igt@kms_psr@pr-basic.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#1072] / [i915#9732]) +15 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-13/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][323] ([i915#1072] / [i915#9732]) +27 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-6/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr-sprite-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#4077] / [i915#9688]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-1/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#9732]) +11 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#1072] / [i915#9732]) +39 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][327] ([i915#9685])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg1: NOTRUN -> [SKIP][328] ([i915#9685])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-19/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#9685])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#5289]) +1 other test skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#11131] / [i915#4235] / [i915#5190])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#5289]) +2 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#5289])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#11131] / [i915#4235])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_setmode@basic:
- shard-dg2: [PASS][335] -> [FAIL][336] ([i915#5465])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg2-1/igt@kms_setmode@basic.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-8/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [FAIL][337] ([i915#5465])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-8/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][338] ([i915#12317])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-13/igt@kms_setmode@basic@pipe-a-hdmi-a-3.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [PASS][339] -> [FAIL][340] ([i915#5465]) +2 other tests fail
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-3/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][341] ([i915#5465])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-13/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#8623])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#9906]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-7/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-dpms:
- shard-mtlp: NOTRUN -> [SKIP][344] ([i915#3555] / [i915#8808])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-2/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@max-min:
- shard-dg1: NOTRUN -> [SKIP][345] ([i915#9906])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-12/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: NOTRUN -> [SKIP][346] ([i915#9906]) +3 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#2437])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][348] ([i915#2437] / [i915#9412])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-14/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][349] ([i915#2437] / [i915#9412])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-3/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg2: NOTRUN -> [SKIP][350] ([i915#2437] / [i915#9412])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-2/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][351] ([i915#2435])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-1/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@cpu-hotplug:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#8850])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-2/igt@perf_pmu@cpu-hotplug.html
- shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#8850])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-1/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][354] ([i915#8516]) +1 other test skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-5/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-dg1: NOTRUN -> [SKIP][355] ([i915#8516])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-19/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@perf_pmu@render-node-busy-idle:
- shard-dg2: NOTRUN -> [FAIL][356] ([i915#4349]) +1 other test fail
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-7/igt@perf_pmu@render-node-busy-idle.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][357] ([i915#3291] / [i915#3708])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-6/igt@prime_vgem@basic-write.html
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#3291] / [i915#3708])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-6/igt@prime_vgem@basic-write.html
- shard-dg1: NOTRUN -> [SKIP][359] ([i915#3708])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-19/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][360] ([i915#3708])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-11/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: NOTRUN -> [SKIP][361] ([i915#9917])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-1/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg1: NOTRUN -> [SKIP][362] ([i915#9917])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-12/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_eio@in-flight-suspend:
- shard-dg1: [DMESG-WARN][363] ([i915#4391] / [i915#4423]) -> [PASS][364]
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg1-19/igt@gem_eio@in-flight-suspend.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-12/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][365] ([i915#12543] / [i915#5784]) -> [PASS][366]
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg1-15/igt@gem_eio@reset-stress.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-19/igt@gem_eio@reset-stress.html
* igt@gem_wait@write-wait@vcs1:
- shard-dg1: [INCOMPLETE][367] -> [PASS][368] +1 other test pass
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg1-12/igt@gem_wait@write-wait@vcs1.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-18/igt@gem_wait@write-wait@vcs1.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [ABORT][369] ([i915#9820]) -> [PASS][370]
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-snb: [FAIL][371] ([i915#2346]) -> [PASS][372]
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [SKIP][373] ([i915#12402]) -> [PASS][374]
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg2-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][375] ([i915#2122]) -> [PASS][376] +1 other test pass
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-snb2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-snb1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-mtlp: [FAIL][377] ([i915#2122]) -> [PASS][378] +10 other tests pass
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1:
- shard-mtlp: [FAIL][379] ([i915#11989]) -> [PASS][380]
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg1: [DMESG-WARN][381] ([i915#4423]) -> [PASS][382] +1 other test pass
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg1-12/igt@kms_flip@flip-vs-suspend.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-14/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-snb: [INCOMPLETE][383] ([i915#4839]) -> [PASS][384] +1 other test pass
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-snb2/igt@kms_flip@flip-vs-suspend-interruptible.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-mtlp: [INCOMPLETE][385] ([i915#6113]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-mtlp-7/igt@kms_flip@flip-vs-suspend-interruptible.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-5/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-edp1:
- shard-mtlp: [INCOMPLETE][387] ([i915#10056] / [i915#6113]) -> [PASS][388]
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-mtlp-7/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-5/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-dg2: [FAIL][389] ([i915#2122]) -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg2-7/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4:
- shard-dg1: [FAIL][391] ([i915#2122]) -> [PASS][392] +3 other tests pass
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg1-15/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-16/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4.html
* igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1:
- shard-tglu: [FAIL][393] ([i915#2122]) -> [PASS][394] +2 other tests pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-tglu-9/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
- shard-dg2: [FAIL][395] ([i915#6880]) -> [PASS][396] +1 other test pass
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
* igt@kms_hdmi_inject@inject-audio:
- shard-mtlp: [SKIP][397] ([i915#433]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-mtlp-5/igt@kms_hdmi_inject@inject-audio.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
- shard-dg1: [SKIP][399] ([i915#433]) -> [PASS][400]
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg1-18/igt@kms_hdmi_inject@inject-audio.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-15/igt@kms_hdmi_inject@inject-audio.html
- shard-snb: [SKIP][401] -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-snb4/igt@kms_hdmi_inject@inject-audio.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-snb1/igt@kms_hdmi_inject@inject-audio.html
- shard-tglu: [SKIP][403] ([i915#433]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-tglu-7/igt@kms_hdmi_inject@inject-audio.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-tglu-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][405] ([i915#9519]) -> [PASS][406] +1 other test pass
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html
- shard-rkl: [SKIP][407] ([i915#9519]) -> [PASS][408] +3 other tests pass
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_vrr@negative-basic:
- shard-dg2: [SKIP][409] ([i915#3555] / [i915#9906]) -> [PASS][410]
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg2-1/igt@kms_vrr@negative-basic.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-10/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@module-unload:
- shard-snb: [ABORT][411] ([i915#9853]) -> [PASS][412]
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-snb6/igt@perf_pmu@module-unload.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-snb6/igt@perf_pmu@module-unload.html
* igt@perf_pmu@render-node-busy-idle@vcs1:
- shard-mtlp: [FAIL][413] ([i915#4349]) -> [PASS][414] +3 other tests pass
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle@vcs1.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-1/igt@perf_pmu@render-node-busy-idle@vcs1.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][415] ([i915#10131] / [i915#9697]) -> [ABORT][416] ([i915#10131] / [i915#10887] / [i915#9697])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_content_protection@legacy:
- shard-dg2: [SKIP][417] ([i915#7118] / [i915#9424]) -> [TIMEOUT][418] ([i915#7173])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg2-2/igt@kms_content_protection@legacy.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-10/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][419] ([i915#9424]) -> [SKIP][420] ([i915#9433])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg1-16/igt@kms_content_protection@mei-interface.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][421] ([i915#7118] / [i915#9424]) -> [SKIP][422] ([i915#7118] / [i915#7162] / [i915#9424])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg2-3/igt@kms_content_protection@type1.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-10/igt@kms_content_protection@type1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-dg1: [SKIP][423] ([i915#2672] / [i915#3555] / [i915#4423]) -> [SKIP][424] ([i915#2672] / [i915#3555])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: [SKIP][425] ([i915#2587] / [i915#2672] / [i915#4423]) -> [SKIP][426] ([i915#2587] / [i915#2672])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg2: [SKIP][427] ([i915#10433] / [i915#3458]) -> [SKIP][428] ([i915#3458]) +2 other tests skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][429] ([i915#3458]) -> [SKIP][430] ([i915#10433] / [i915#3458])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][431] ([i915#4070] / [i915#4816]) -> [SKIP][432] ([i915#4816])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_setmode@basic:
- shard-dg1: [FAIL][433] ([i915#12317]) -> [FAIL][434] ([i915#12317] / [i915#5465])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg1-17/igt@kms_setmode@basic.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg1-13/igt@kms_setmode@basic.html
* igt@perf@non-zero-reason:
- shard-dg2: [FAIL][435] ([i915#7484]) -> [FAIL][436] ([i915#9100]) +1 other test fail
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15618/shard-dg2-6/igt@perf@non-zero-reason.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/shard-dg2-11/igt@perf@non-zero-reason.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12013/index.html
[-- Attachment #2: Type: text/html, Size: 109675 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-10-31 19:30 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-31 11:19 [PATCH i-g-t] lib/xe/xe_eudebug: Deny unused triggers Mika Kuoppala
2024-10-31 12:55 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-10-31 13:10 ` ✓ CI.xeBAT: " Patchwork
2024-10-31 17:12 ` ✗ CI.xeFULL: failure " Patchwork
2024-10-31 19:30 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox