* [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests reset domain aware
@ 2024-04-10 9:40 Tejas Upadhyay
2024-04-10 16:45 ` ✓ CI.xeBAT: success for tests/xe_exec_threads: Make hang tests reset domain aware (rev2) Patchwork
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Tejas Upadhyay @ 2024-04-10 9:40 UTC (permalink / raw)
To: igt-dev; +Cc: intel-xe, Matthew Brost, Lucas De Marchi, Tejas Upadhyay
RCS/CCS are dependent engines as they are sharing reset
domain. Whenever there is reset from CCS, all the exec queues
running on RCS are victimised mainly on Lunarlake.
Lets skip parallel execution on CCS with RCS.
It helps in fixing following errors:
1. Test assertion failure function test_legacy_mode, file, Failed assertion: data[i].data == 0xc0ffee
2.Test assertion failure function xe_exec, file ../lib/xe/xe_ioctl.c, Failed assertion: __xe_exec(fd, exec) == 0, error: -125 != 0
V3:
- Check victimization reset domain wise irrespective of platform - Lucas/MattR
V2:
- Add error details
Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
---
tests/intel/xe_exec_threads.c | 43 ++++++++++++++++++++++++++++++++++-
1 file changed, 42 insertions(+), 1 deletion(-)
diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
index 8083980f9..24eac39de 100644
--- a/tests/intel/xe_exec_threads.c
+++ b/tests/intel/xe_exec_threads.c
@@ -710,6 +710,24 @@ static void *thread(void *data)
return NULL;
}
+static bool is_engine_contexts_victimized(__u16 eclass, unsigned int flags,
+ bool has_rcs, bool multi_ccs,
+ bool *ccs0_created)
+{
+ if (!(eclass == DRM_XE_ENGINE_CLASS_COMPUTE && flags & HANG))
+ return false;
+ if (has_rcs) {
+ return true;
+ } else if (multi_ccs) {
+ /* In case of multi ccs, allow only 1 ccs to run HANG test*/
+ if (*ccs0_created)
+ return true;
+ *ccs0_created = true;
+ }
+
+ return false;
+}
+
/**
* SUBTEST: threads-%s
* Description: Run threads %arg[1] test with multi threads
@@ -955,9 +973,20 @@ static void threads(int fd, int flags)
bool go = false;
int n_threads = 0;
int gt;
+ bool has_rcs = false;
+ bool multi_ccs = false, has_ccs = false, ccs0_created = false;
- xe_for_each_engine(fd, hwe)
+ xe_for_each_engine(fd, hwe) {
+ if (hwe->engine_class == DRM_XE_ENGINE_CLASS_RENDER) {
+ has_rcs = true;
+ } else if (hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE) {
+ if (has_ccs)
+ multi_ccs = true;
+ else
+ has_ccs = true;
+ }
++n_engines;
+ }
if (flags & BALANCER) {
xe_for_each_gt(fd, gt)
@@ -990,6 +1019,18 @@ static void threads(int fd, int flags)
}
xe_for_each_engine(fd, hwe) {
+ /* RCS/CCS sharing reset domain hence dependent engines.
+ * When CCS is doing reset, all the contexts of RCS are
+ * victimized. Also in case of multiple CCS instances
+ * contexts running on other CCS engine are victimized.
+ * so skip the compute engine avoiding parallel execution
+ * with RCS and other CCS.
+ */
+ if (is_engine_contexts_victimized(hwe->engine_class, flags,
+ has_rcs, multi_ccs,
+ &ccs0_created))
+ continue;
+
threads_data[i].mutex = &mutex;
threads_data[i].cond = &cond;
#define ADDRESS_SHIFT 39
--
2.25.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✓ CI.xeBAT: success for tests/xe_exec_threads: Make hang tests reset domain aware (rev2)
2024-04-10 9:40 [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests reset domain aware Tejas Upadhyay
@ 2024-04-10 16:45 ` Patchwork
2024-04-10 16:55 ` ✓ Fi.CI.BAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-04-10 16:45 UTC (permalink / raw)
To: Tejas Upadhyay; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 792 bytes --]
== Series Details ==
Series: tests/xe_exec_threads: Make hang tests reset domain aware (rev2)
URL : https://patchwork.freedesktop.org/series/131938/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7804_BAT -> XEIGTPW_10998_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (5 -> 5)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_7804 -> IGTPW_10998
IGTPW_10998: 10998
IGT_7804: 7804
xe-1069-bf24d40fae19bcceac3e32c4866079b4f10c70f9: bf24d40fae19bcceac3e32c4866079b4f10c70f9
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/index.html
[-- Attachment #2: Type: text/html, Size: 1337 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Fi.CI.BAT: success for tests/xe_exec_threads: Make hang tests reset domain aware (rev2)
2024-04-10 9:40 [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests reset domain aware Tejas Upadhyay
2024-04-10 16:45 ` ✓ CI.xeBAT: success for tests/xe_exec_threads: Make hang tests reset domain aware (rev2) Patchwork
@ 2024-04-10 16:55 ` Patchwork
2024-04-11 0:05 ` ✗ CI.xeFULL: failure " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-04-10 16:55 UTC (permalink / raw)
To: Tejas Upadhyay; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8592 bytes --]
== Series Details ==
Series: tests/xe_exec_threads: Make hang tests reset domain aware (rev2)
URL : https://patchwork.freedesktop.org/series/131938/
State : success
== Summary ==
CI Bug Log - changes from IGT_7804 -> IGTPW_10998
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/index.html
Participating hosts (38 -> 36)
------------------------------
Additional (4): fi-glk-j4005 bat-kbl-2 fi-kbl-8809g bat-arls-3
Missing (6): bat-dg1-7 fi-tgl-1115g4 fi-snb-2520m bat-dg2-11 bat-jsl-1 bat-arls-2
Known issues
------------
Here are the changes found in IGTPW_10998 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-arls-3: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-kbl-2: NOTRUN -> [SKIP][2] ([i915#1849])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-kbl-2/igt@fbdev@info.html
* igt@gem_huc_copy@huc-copy:
- fi-glk-j4005: NOTRUN -> [SKIP][3] ([i915#2190])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-glk-j4005: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/fi-glk-j4005/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@basic@lmem0:
- bat-dg2-9: [PASS][5] -> [FAIL][6] ([i915#10378])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-kbl-2: NOTRUN -> [SKIP][7] +39 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-arls-3: NOTRUN -> [SKIP][8] ([i915#10213]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-arls-3: NOTRUN -> [SKIP][9] ([i915#4083])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-arls-3: NOTRUN -> [SKIP][10] ([i915#10197] / [i915#10211] / [i915#4079])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_blits@basic:
- bat-arls-3: NOTRUN -> [SKIP][11] ([i915#10196] / [i915#4077]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-arls-3: NOTRUN -> [SKIP][12] ([i915#10206] / [i915#4079])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-arls-3: NOTRUN -> [SKIP][13] ([i915#10209])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- bat-arls-3: NOTRUN -> [SKIP][14] ([i915#10200]) +9 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-glk-j4005: NOTRUN -> [SKIP][15] +10 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/fi-glk-j4005/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- bat-arls-3: NOTRUN -> [SKIP][16] ([i915#10202]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dsc@dsc-basic:
- bat-arls-3: NOTRUN -> [SKIP][17] ([i915#9886])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-arls-3: NOTRUN -> [SKIP][18] ([i915#10207])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-arls-3: NOTRUN -> [SKIP][19] ([i915#9812])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-arls-3: NOTRUN -> [SKIP][20] ([i915#9732]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-arls-3: NOTRUN -> [SKIP][21] ([i915#10208] / [i915#8809])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-mmap:
- bat-arls-3: NOTRUN -> [SKIP][22] ([i915#10196] / [i915#3708] / [i915#4077]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-arls-3: NOTRUN -> [SKIP][23] ([i915#10212] / [i915#3708])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-arls-3: NOTRUN -> [SKIP][24] ([i915#10214] / [i915#3708])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-arls-3: NOTRUN -> [SKIP][25] ([i915#10216] / [i915#3708])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/bat-arls-3/igt@prime_vgem@basic-write.html
* igt@runner@aborted:
- fi-kbl-8809g: NOTRUN -> [FAIL][26] ([i915#10689])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/fi-kbl-8809g/igt@runner@aborted.html
[i915#10196]: https://gitlab.freedesktop.org/drm/intel/issues/10196
[i915#10197]: https://gitlab.freedesktop.org/drm/intel/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/intel/issues/10200
[i915#10202]: https://gitlab.freedesktop.org/drm/intel/issues/10202
[i915#10206]: https://gitlab.freedesktop.org/drm/intel/issues/10206
[i915#10207]: https://gitlab.freedesktop.org/drm/intel/issues/10207
[i915#10208]: https://gitlab.freedesktop.org/drm/intel/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/intel/issues/10209
[i915#10211]: https://gitlab.freedesktop.org/drm/intel/issues/10211
[i915#10212]: https://gitlab.freedesktop.org/drm/intel/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/intel/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/intel/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216
[i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#10689]: https://gitlab.freedesktop.org/drm/intel/issues/10689
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812
[i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7804 -> IGTPW_10998
CI-20190529: 20190529
CI_DRM_14557: bf24d40fae19bcceac3e32c4866079b4f10c70f9 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10998: 10998
IGT_7804: 7804
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/index.html
[-- Attachment #2: Type: text/html, Size: 10154 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ CI.xeFULL: failure for tests/xe_exec_threads: Make hang tests reset domain aware (rev2)
2024-04-10 9:40 [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests reset domain aware Tejas Upadhyay
2024-04-10 16:45 ` ✓ CI.xeBAT: success for tests/xe_exec_threads: Make hang tests reset domain aware (rev2) Patchwork
2024-04-10 16:55 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-04-11 0:05 ` Patchwork
2024-04-11 1:42 ` ✗ Fi.CI.IGT: " Patchwork
2024-04-29 22:37 ` [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests reset domain aware John Harrison
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-04-11 0:05 UTC (permalink / raw)
To: Tejas Upadhyay; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 31692 bytes --]
== Series Details ==
Series: tests/xe_exec_threads: Make hang tests reset domain aware (rev2)
URL : https://patchwork.freedesktop.org/series/131938/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7804_full -> XEIGTPW_10998_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_10998_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_10998_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 (7 -> 3)
------------------------------
ERROR: It appears as if the changes made in XEIGTPW_10998_full prevented too many machines from booting.
Additional (1): shard-lnl-0
Missing (5): shard-lnl-1 shard-lnl-2 shard-lnl-3 shard-lnl-5 shard-lnl-8
Known issues
------------
Here are the changes found in XEIGTPW_10998_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2-set2: [PASS][1] -> [SKIP][2] ([Intel XE#1201] / [i915#6077])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-463/igt@kms_addfb_basic@basic-x-tiled-legacy.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][3] ([Intel XE#1201] / [Intel XE#829])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#1124] / [Intel XE#1201]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-7:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#1201] / [Intel XE#787]) +89 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-464/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-7.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-7:
- shard-dg2-set2: NOTRUN -> [FAIL][6] ([Intel XE#650]) +55 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-7.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +26 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1201] / [Intel XE#373]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_cursor_crc@cursor-dpms:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][9] ([Intel XE#1214] / [Intel XE#282]) +1 other test dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-433/igt@kms_cursor_crc@cursor-dpms.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1201] / [Intel XE#455]) +5 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-464/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][11] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-434/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [PASS][12] -> [DMESG-WARN][13] ([Intel XE#1214] / [Intel XE#282]) +6 other tests dmesg-warn
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-dg2-set2: [PASS][14] -> [DMESG-WARN][15] ([Intel XE#1200] / [Intel XE#1214]) +1 other test dmesg-warn
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-434/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-464/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible@ad-hdmi-a6-hdmi-a7:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][16] ([Intel XE#1214])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-464/igt@kms_flip@2x-absolute-wf_vblank-interruptible@ad-hdmi-a6-hdmi-a7.html
* igt@kms_flip@2x-flip-vs-panning@cd-hdmi-a6-hdmi-a7:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][17] ([Intel XE#1200] / [Intel XE#1214])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-464/igt@kms_flip@2x-flip-vs-panning@cd-hdmi-a6-hdmi-a7.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#651]) +6 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#653]) +5 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_getfb@getfb-addfb-different-handles:
- shard-dg2-set2: [PASS][21] -> [SKIP][22] ([Intel XE#1201] / [Intel XE#687]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-464/igt@kms_getfb@getfb-addfb-different-handles.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_getfb@getfb-addfb-different-handles.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [PASS][23] -> [DMESG-WARN][24] ([Intel XE#1214]) +2 other tests dmesg-warn
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-434/igt@kms_pipe_crc_basic@suspend-read-crc.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_lowres@tiling-4@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][25] ([Intel XE#1214] / [Intel XE#324]) +1 other test dmesg-warn
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_plane_lowres@tiling-4@pipe-a-dp-4.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2-set2: [PASS][26] -> [SKIP][27] ([Intel XE#1201]) +4 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-436/igt@kms_pm_rpm@basic-pci-d3-state.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1201] / [Intel XE#929]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-434/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1149] / [Intel XE#1201])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-464/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rmfb@close-fd@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][30] ([Intel XE#294])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_rmfb@close-fd@pipe-b-dp-4.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#330])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][32] -> [FAIL][33] ([Intel XE#899])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-466/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-dg2-set2: [PASS][34] -> [DMESG-WARN][35] ([Intel XE#1162] / [Intel XE#1214]) +1 other test dmesg-warn
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-436/igt@kms_vblank@ts-continuation-suspend.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-435/igt@kms_vblank@ts-continuation-suspend.html
* igt@xe_evict@evict-cm-threads-large-multi-vm:
- shard-dg2-set2: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#1195] / [Intel XE#1473])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-436/igt@xe_evict@evict-cm-threads-large-multi-vm.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-433/igt@xe_evict@evict-cm-threads-large-multi-vm.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#1201] / [Intel XE#288]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_threads@threads-hang-fd-userptr:
- shard-dg2-set2: [PASS][39] -> [TIMEOUT][40] ([Intel XE#1206] / [Intel XE#1261] / [Intel XE#1356]) +1 other test timeout
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-433/igt@xe_exec_threads@threads-hang-fd-userptr.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-466/igt@xe_exec_threads@threads-hang-fd-userptr.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-dg2-set2: NOTRUN -> [FAIL][41] ([Intel XE#1043] / [Intel XE#845])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-463/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_vm@munmap-style-unbind-many-all:
- shard-dg2-set2: [PASS][42] -> [INCOMPLETE][43] ([Intel XE#1195])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-464/igt@xe_vm@munmap-style-unbind-many-all.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-463/igt@xe_vm@munmap-style-unbind-many-all.html
#### Possible fixes ####
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-dg2-set2: [DMESG-WARN][44] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][45] +4 other tests pass
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-464/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_flip@2x-plain-flip:
- shard-dg2-set2: [SKIP][46] ([Intel XE#1201] / [Intel XE#1235]) -> [PASS][47]
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_flip@2x-plain-flip.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-435/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [DMESG-WARN][48] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][49]
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a6:
- shard-dg2-set2: [DMESG-WARN][50] ([Intel XE#1214]) -> [PASS][51] +4 other tests pass
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-433/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: [SKIP][52] ([Intel XE#1201] / [Intel XE#417]) -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-433/igt@kms_hdmi_inject@inject-audio.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-434/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_lease@lease-invalid-crtc:
- shard-dg2-set2: [SKIP][54] ([Intel XE#1201]) -> [PASS][55] +6 other tests pass
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_lease@lease-invalid-crtc.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-463/igt@kms_lease@lease-invalid-crtc.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][56] ([Intel XE#361]) -> [PASS][57]
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2-set2: [SKIP][58] ([Intel XE#1201] / [Intel XE#1211]) -> [PASS][59]
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-466/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_prop_blob@blob-prop-core:
- shard-dg2-set2: [SKIP][60] ([Intel XE#1201] / [Intel XE#780]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_prop_blob@blob-prop-core.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-466/igt@kms_prop_blob@blob-prop-core.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6:
- shard-dg2-set2: [FAIL][62] ([Intel XE#899]) -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-466/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-dg2-set2: [TIMEOUT][64] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) -> [PASS][65]
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-464/igt@xe_evict@evict-beng-mixed-threads-large.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-435/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [TIMEOUT][66] ([Intel XE#1473]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [FAIL][68] ([Intel XE#1259]) -> [PASS][69] +1 other test pass
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-463/igt@xe_evict@evict-threads-large.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-464/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_threads@threads-bal-fd-userptr-rebind:
- shard-dg2-set2: [TIMEOUT][70] ([Intel XE#1206] / [Intel XE#1356]) -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-466/igt@xe_exec_threads@threads-bal-fd-userptr-rebind.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-433/igt@xe_exec_threads@threads-bal-fd-userptr-rebind.html
* igt@xe_exec_threads@threads-bal-mixed-fd-rebind:
- shard-dg2-set2: [INCOMPLETE][72] ([Intel XE#1169] / [Intel XE#1195] / [Intel XE#1356]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-433/igt@xe_exec_threads@threads-bal-mixed-fd-rebind.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-466/igt@xe_exec_threads@threads-bal-mixed-fd-rebind.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [SKIP][74] ([Intel XE#1192] / [Intel XE#1201]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-433/igt@xe_live_ktest@xe_bo.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@xe_live_ktest@xe_bo.html
#### Warnings ####
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][76] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][77] ([Intel XE#1201] / [Intel XE#829])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-466/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][78] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][79] ([Intel XE#1201] / [Intel XE#829])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][80] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][81] ([Intel XE#1201] / [Intel XE#829])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
- shard-dg2-set2: [SKIP][82] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][83] ([Intel XE#1201] / [Intel XE#829])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][84] ([Intel XE#1201] / [Intel XE#829]) -> [SKIP][85] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][86] ([Intel XE#1201]) -> [SKIP][87] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_chamelium_color@gamma.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-dg2-set2: [SKIP][88] ([Intel XE#1201]) -> [SKIP][89] ([Intel XE#1201] / [Intel XE#373])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_chamelium_frames@hdmi-frame-dump.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-466/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg2-set2: [SKIP][90] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][91] ([Intel XE#1201])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-434/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2-set2: [DMESG-WARN][92] ([Intel XE#1214] / [Intel XE#282]) -> [SKIP][93] ([Intel XE#1201])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-433/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt:
- shard-dg2-set2: [SKIP][94] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][95] ([Intel XE#1201]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][96] ([Intel XE#1201]) -> [SKIP][97] ([Intel XE#1201] / [Intel XE#651]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-dg2-set2: [SKIP][98] ([Intel XE#1201]) -> [SKIP][99] ([Intel XE#1201] / [Intel XE#653]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-stridechange:
- shard-dg2-set2: [SKIP][100] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][101] ([Intel XE#1201]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][102] ([Intel XE#1201] / [Intel XE#356]) -> [SKIP][103] ([Intel XE#1201] / [Intel XE#829])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-436/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-dg2-set2: [FAIL][104] ([Intel XE#650]) -> [SKIP][105] ([Intel XE#1201] / [Intel XE#829])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-464/igt@kms_plane@pixel-format-source-clamping.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane_lowres@tiling-4:
- shard-dg2-set2: [SKIP][106] ([Intel XE#1201] / [Intel XE#829]) -> [DMESG-WARN][107] ([Intel XE#1214] / [Intel XE#324])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_plane_lowres@tiling-4.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][108] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) -> [SKIP][109] ([Intel XE#1201])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf:
- shard-dg2-set2: [SKIP][110] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][111] ([Intel XE#1201]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-464/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][112] ([Intel XE#1201]) -> [SKIP][113] ([Intel XE#1201] / [Intel XE#929])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-436/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][114] ([Intel XE#1201] / [Intel XE#362]) -> [SKIP][115] ([Intel XE#1201] / [Intel XE#869])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: [SKIP][116] ([Intel XE#1201]) -> [SKIP][117] ([Intel XE#1201] / [Intel XE#455])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-435/igt@kms_vrr@flipline.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-466/igt@kms_vrr@flipline.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][118] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][119] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-large.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][120] ([Intel XE#1201] / [Intel XE#366]) -> [ABORT][121] ([Intel XE#1358])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7804/shard-dg2-464/igt@xe_pm@s4-d3cold-basic-exec.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10998/shard-dg2-434/igt@xe_pm@s4-d3cold-basic-exec.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
[Intel XE#1043]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1043
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
[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#1200]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1200
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1206]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1206
[Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211
[Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1235
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1259
[Intel XE#1261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1261
[Intel XE#1356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1356
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[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#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/650
[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#687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/687
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#845]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/845
[Intel XE#869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/869
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077
Build changes
-------------
* IGT: IGT_7804 -> IGTPW_10998
IGTPW_10998: 10998
IGT_7804: 7804
xe-1069-bf24d40fae19bcceac3e32c4866079b4f10c70f9: bf24d40fae19bcceac3e32c4866079b4f10c70f9
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-131938v2/index.html
[-- Attachment #2: Type: text/html, Size: 42281 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/xe_exec_threads: Make hang tests reset domain aware (rev2)
2024-04-10 9:40 [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests reset domain aware Tejas Upadhyay
` (2 preceding siblings ...)
2024-04-11 0:05 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-04-11 1:42 ` Patchwork
2024-04-29 22:37 ` [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests reset domain aware John Harrison
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-04-11 1:42 UTC (permalink / raw)
To: Tejas Upadhyay; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 95923 bytes --]
== Series Details ==
Series: tests/xe_exec_threads: Make hang tests reset domain aware (rev2)
URL : https://patchwork.freedesktop.org/series/131938/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7804_full -> IGTPW_10998_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10998_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10998_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_10998/index.html
Participating hosts (9 -> 10)
------------------------------
Additional (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10998_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-dg2-10/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-6/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@kms_flip@absolute-wf_vblank@a-vga1:
- shard-snb: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-snb5/igt@kms_flip@absolute-wf_vblank@a-vga1.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-snb4/igt@kms_flip@absolute-wf_vblank@a-vga1.html
Known issues
------------
Here are the changes found in IGTPW_10998_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]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/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_10998/shard-mtlp-7/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#9318])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-3/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#7701])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-2/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +6 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-2/igt@drm_fdinfo@busy-idle-check-all@ccs0.html
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +14 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-16/igt@drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][11] ([i915#7742])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +17 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-11/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#7697]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#3936])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-6/igt@gem_busy@semaphore.html
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#3936])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-15/igt@gem_busy@semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#3936])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-3/igt@gem_busy@semaphore.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-4/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#7697])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-18/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#7697]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-5/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#6335])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][21] ([i915#6335])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-10/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#8562])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-16/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: NOTRUN -> [FAIL][23] ([i915#6268])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#8555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-3/igt@gem_ctx_persistence@hang.html
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-17/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#5882]) +6 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-2/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-10/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-rkl: NOTRUN -> [ABORT][29] ([i915#7975] / [i915#8213])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-4/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg2: NOTRUN -> [INCOMPLETE][30] ([i915#10513] / [i915#1982])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-5/igt@gem_eio@kms.html
- shard-dg1: NOTRUN -> [INCOMPLETE][31] ([i915#10513] / [i915#1982])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-13/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#4771])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-18/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#4771])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-8/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4812])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-2/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#8555]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-5/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-4/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#6334])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-dg2: NOTRUN -> [FAIL][38] ([i915#9606])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-2/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-glk: NOTRUN -> [FAIL][39] ([i915#9606])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-glk1/igt@gem_exec_capture@many-4k-zero.html
- shard-rkl: NOTRUN -> [FAIL][40] ([i915#9606])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][41] -> [FAIL][42] ([i915#2846])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-glk: NOTRUN -> [FAIL][43] ([i915#2842])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-glk7/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-rkl: [PASS][44] -> [FAIL][45] ([i915#2842])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-rkl-2/igt@gem_exec_fair@basic-none-share@rcs0.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][46] -> [FAIL][47] ([i915#2842])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-10/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-sync:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#3539]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-14/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][50] ([i915#2842])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-6/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_fence@submit3:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4812])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-16/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-15/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#3539] / [i915#4852]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-11/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#5107])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-10/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3281]) +16 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-scanout:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#3281]) +12 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-14/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#3281]) +18 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-2/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_reloc@basic-write-cpu:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3281]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-5/igt@gem_exec_reloc@basic-write-cpu.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4860])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4860]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@basic@lmem0:
- shard-dg2: [PASS][63] -> [FAIL][64] ([i915#10378])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-dg2-8/igt@gem_lmem_swapping@basic@lmem0.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-6/igt@gem_lmem_swapping@basic@lmem0.html
* igt@gem_lmem_swapping@heavy-random:
- shard-glk: NOTRUN -> [SKIP][65] ([i915#4613]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-glk5/igt@gem_lmem_swapping@heavy-random.html
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4613]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-3/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-random@lmem0:
- shard-dg1: NOTRUN -> [FAIL][67] ([i915#10378])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-16/igt@gem_lmem_swapping@heavy-random@lmem0.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#4613])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-2/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#4613]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg2: NOTRUN -> [FAIL][70] ([i915#10378])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4565])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_madvise@dontneed-before-exec:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3282]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-4/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#4077]) +14 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-14/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4077]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4083]) +10 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-6/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#4083]) +5 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-15/igt@gem_mmap_wc@read.html
* igt@gem_mmap_wc@read-write:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4083]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-4/igt@gem_mmap_wc@read-write.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3282]) +7 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#3282]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#3282]) +6 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][81] ([i915#2658])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-glk8/igt@gem_pread@exhaustion.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4270]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-5/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#4270]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-9/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#4270]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4270]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-16/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#8428]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#5190] / [i915#8428]) +6 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4079]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#8411])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#4079]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-16/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4879])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-16/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#3297]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-18/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][93] ([i915#3323])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-glk8/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#3297]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-11/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#3297])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-2/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4880]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4958])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-16/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#3297])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_workarounds@suspend-resume:
- shard-snb: [PASS][99] -> [ABORT][100] ([i915#8213])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-snb7/igt@gem_workarounds@suspend-resume.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-snb5/igt@gem_workarounds@suspend-resume.html
* igt@gen9_exec_parse@basic-rejected:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#2856])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-5/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#2527]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-1/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#2527]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-17/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#2856]) +4 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-11/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [PASS][105] -> [INCOMPLETE][106] ([i915#9820])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][107] -> [ABORT][108] ([i915#10131] / [i915#9820])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [ABORT][109] ([i915#9820])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#7178])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-15/igt@i915_module_load@resize-bar.html
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#6412])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-7/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#7091])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-10/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: NOTRUN -> [FAIL][113] ([i915#3591])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#6621])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-14/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#8925]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-16/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#4387])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-6/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#7984])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#6245])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-13/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@live@reset:
- shard-dg2: [PASS][119] -> [ABORT][120] ([i915#10366])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-dg2-8/igt@i915_selftest@live@reset.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-3/igt@i915_selftest@live@reset.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][121] ([i915#7443])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-7/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4212])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-10/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#4212])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#4212])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-18/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#8709]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#8709]) +7 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#8709]) +11 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#10333])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-2/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#9531])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#9531])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][131] ([i915#1769])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#1769] / [i915#3555])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-7/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_10998/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#5286]) +6 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#5286])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#5286])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#4538] / [i915#5286]) +6 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#3638]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-16/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#3638]) +6 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [PASS][140] -> [FAIL][141] ([i915#3743]) +3 other tests fail
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#5190]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#4538] / [i915#5190]) +12 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538]) +5 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-17/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6187])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_joiner@basic:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#10656])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-10/igt@kms_big_joiner@basic.html
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#10656])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-14/igt@kms_big_joiner@basic.html
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#10656])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-4/igt@kms_big_joiner@basic.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#6095]) +63 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#10307] / [i915#6095]) +173 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#10278])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-11/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#10278])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#10278])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#10278]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#6095]) +7 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#6095]) +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#6095]) +69 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][158] +381 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-glk8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-8/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#7213]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#3742])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#4087]) +3 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#7828]) +13 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-11/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#7828])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-4/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#7828]) +9 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#7828]) +11 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-16/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#7828]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#3299])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3116])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#3299]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-15/igt@kms_content_protection@dp-mst-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3299])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#7118] / [i915#9424]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-10/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#9424])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-2/igt@kms_content_protection@lic-type-0.html
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#9424])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_content_protection@lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#9424])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-18/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#7116])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-18/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3359])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#3555]) +5 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#3359]) +3 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#3359])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555]) +6 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8814])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3359]) +2 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-14/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][184] -> [FAIL][185] ([i915#2346])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#9067])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#4103] / [i915#4213]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#4103])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#9227])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#9723]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#9723])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-13/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#3555]) +7 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-8/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#8812])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-17/igt@kms_dsc@dsc-basic.html
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#3840] / [i915#9159])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-4/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#3840])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#3840])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3840])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#3840] / [i915#9053])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#1839])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-10/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#658])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-5/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#658])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-15/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#8381])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#3637]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][205] +42 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][206] +52 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-4/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#9934]) +7 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#3637]) +3 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-2/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#8381]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-8/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@plain-flip-ts-check@b-vga1:
- shard-snb: [PASS][210] -> [FAIL][211] ([i915#2122])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-snb1/igt@kms_flip@plain-flip-ts-check@b-vga1.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-snb7/igt@kms_flip@plain-flip-ts-check@b-vga1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#2587] / [i915#2672]) +5 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#2672]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#2672]) +5 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#3555])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#5274])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-6/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [PASS][217] -> [FAIL][218] ([i915#6880])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [FAIL][219] ([i915#6880])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-snb: [PASS][220] -> [SKIP][221] +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#8708]) +23 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#8708]) +34 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][224] +51 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#5354]) +50 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#1825]) +40 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3023]) +20 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#10433] / [i915#3458]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#10055])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#9766])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#9766])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#3458]) +14 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#8708]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#3458]) +24 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][235] +13 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#1825]) +10 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-15/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228]) +2 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-8/igt@kms_hdr@bpc-switch-suspend.html
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-4/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#6301])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@kms_panel_fitting@legacy.html
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#6301])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#5354] / [i915#9423])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#6953] / [i915#9423])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#9423]) +11 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#9423]) +9 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#5176]) +5 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#5176] / [i915#9423]) +3 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#9423]) +7 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#5235]) +3 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#5235]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#5235]) +5 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#5235])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#5235] / [i915#9423]) +15 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#9812])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-6/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#5354])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-18/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#9685]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-17/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#9685])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@kms_pm_dc@dc6-psr.html
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#9685])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [PASS][260] -> [SKIP][261] ([i915#4281])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#8430])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#9519])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg2: NOTRUN -> [FAIL][264] ([i915#8717])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-2/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][265] -> [SKIP][266] ([i915#9519]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#9519])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#9519]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@pc8-residency:
- shard-mtlp: NOTRUN -> [SKIP][269] +8 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-7/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_pm_rpm@pm-tiling:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#4077]) +14 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-2/igt@kms_pm_rpm@pm-tiling.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf@psr2-pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#9808]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-8/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf@psr2-pipe-b-edp-1.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#9683])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-15/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#1072] / [i915#9732]) +27 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-primary-mmap-cpu@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#9688]) +5 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-2/igt@kms_psr@fbc-psr2-primary-mmap-cpu@edp-1.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#1072] / [i915#9673] / [i915#9732])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-11/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@psr2-primary-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#1072] / [i915#9732]) +27 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-15/igt@kms_psr@psr2-primary-mmap-cpu.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][277] ([i915#9732]) +3 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-3/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#1072] / [i915#9732]) +21 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_psr@psr2-suspend.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#4235]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-7/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#4884])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-15/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#5289])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#5289])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#4235] / [i915#5190])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-tglu: NOTRUN -> [SKIP][284] ([i915#5289])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#8623])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8808])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-1/igt@kms_vrr@flip-suspend.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#2437] / [i915#9412])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-5/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#2437])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-17/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#2437])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-10/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][290] ([i915#2437]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-glk1/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#2437] / [i915#9412])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-17/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#2436] / [i915#7387])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-8/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [PASS][293] -> [FAIL][294] ([i915#4349])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-8/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#8850])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-2/igt@perf_pmu@cpu-hotplug.html
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#8850])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-10/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][297] ([i915#10537] / [i915#5793])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-3/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#8516])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-15/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#8516]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-8/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#3708])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#3708] / [i915#4077]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-10/igt@prime_vgem@coherency-gtt.html
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#3708]) +2 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-1/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#3708])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-16/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#9917]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#9917])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-glk: NOTRUN -> [FAIL][306] ([i915#9781])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-glk7/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@v3d/v3d_perfmon@create-perfmon-0:
- shard-mtlp: NOTRUN -> [SKIP][307] ([i915#2575]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-3/igt@v3d/v3d_perfmon@create-perfmon-0.html
* igt@v3d/v3d_submit_cl@bad-extension:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#2575]) +12 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-14/igt@v3d/v3d_submit_cl@bad-extension.html
* igt@v3d/v3d_submit_cl@multiple-job-submission:
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#2575]) +2 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-8/igt@v3d/v3d_submit_cl@multiple-job-submission.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#2575]) +18 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-8/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@vc4/vc4_create_bo@create-bo-4096:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#7711]) +3 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-5/igt@vc4/vc4_create_bo@create-bo-4096.html
* igt@vc4/vc4_tiling@get-bad-flags:
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#7711]) +9 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-4/igt@vc4/vc4_tiling@get-bad-flags.html
* igt@vc4/vc4_tiling@set-get:
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#7711]) +16 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-10/igt@vc4/vc4_tiling@set-get.html
* igt@vc4/vc4_wait_bo@used-bo-0ns:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#7711]) +8 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-16/igt@vc4/vc4_wait_bo@used-bo-0ns.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [FAIL][315] ([i915#6268]) -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][317] ([i915#2842]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_parallel@fds@vcs1:
- shard-mtlp: [ABORT][319] ([i915#10650]) -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-mtlp-1/igt@gem_exec_parallel@fds@vcs1.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-3/igt@gem_exec_parallel@fds@vcs1.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg2: [FAIL][321] ([i915#10378]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-dg2-7/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@i915_module_load@reload-no-display:
- shard-snb: [INCOMPLETE][323] ([i915#9849]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-snb7/igt@i915_module_load@reload-no-display.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-snb2/igt@i915_module_load@reload-no-display.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-mtlp: [INCOMPLETE][325] ([i915#8797]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-mtlp-4/igt@i915_suspend@basic-s2idle-without-i915.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-1/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [FAIL][327] ([i915#10031]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][329] ([i915#5138]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_color@legacy-gamma@pipe-c:
- shard-tglu: [INCOMPLETE][331] -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-tglu-7/igt@kms_color@legacy-gamma@pipe-c.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-8/igt@kms_color@legacy-gamma@pipe-c.html
* igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][333] ([i915#2122]) -> [PASS][334] +2 other tests pass
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-snb7/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-snb2/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@d-hdmi-a4:
- shard-dg1: [FAIL][335] -> [PASS][336] +1 other test pass
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-dg1-15/igt@kms_flip@flip-vs-blocking-wf-vblank@d-hdmi-a4.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg1-17/igt@kms_flip@flip-vs-blocking-wf-vblank@d-hdmi-a4.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: [FAIL][337] ([i915#6880]) -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_plane@pixel-format@pipe-b:
- shard-mtlp: [INCOMPLETE][339] ([i915#10056] / [i915#10650]) -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-mtlp-3/igt@kms_plane@pixel-format@pipe-b.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-4/igt@kms_plane@pixel-format@pipe-b.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-dg2: [INCOMPLETE][341] -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-dg2-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][343] ([i915#9519]) -> [PASS][344] +3 other tests pass
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [FAIL][345] ([i915#9196]) -> [PASS][346]
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [FAIL][347] ([i915#9196]) -> [PASS][348] +1 other test pass
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [INCOMPLETE][349] ([i915#9364]) -> [ABORT][350] ([i915#9846])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][351] ([i915#9820]) -> [INCOMPLETE][352] ([i915#9820] / [i915#9849])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-rkl-6/igt@i915_module_load@reload-with-fault-injection.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-tglu: [FAIL][353] ([i915#3591]) -> [WARN][354] ([i915#2681])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][355] ([i915#3458]) -> [SKIP][356] ([i915#10433] / [i915#3458])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [FAIL][357] ([i915#9295]) -> [SKIP][358] ([i915#3361])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr@fbc-pr-primary-mmap-gtt:
- shard-dg2: [SKIP][359] ([i915#1072] / [i915#9732]) -> [SKIP][360] ([i915#1072] / [i915#9673] / [i915#9732]) +7 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-dg2-7/igt@kms_psr@fbc-pr-primary-mmap-gtt.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-11/igt@kms_psr@fbc-pr-primary-mmap-gtt.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: [SKIP][361] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][362] ([i915#1072] / [i915#9732]) +7 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-dg2-11/igt@kms_psr@psr-cursor-render.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-5/igt@kms_psr@psr-cursor-render.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][363] ([i915#9100]) -> [FAIL][364] ([i915#7484])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7804/shard-dg2-8/igt@perf@non-zero-reason@0-rcs0.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031
[i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055
[i915#10056]: https://gitlab.freedesktop.org/drm/intel/issues/10056
[i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131
[i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/intel/issues/10333
[i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366
[i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#10433]: https://gitlab.freedesktop.org/drm/intel/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434
[i915#10513]: https://gitlab.freedesktop.org/drm/intel/issues/10513
[i915#10537]: https://gitlab.freedesktop.org/drm/intel/issues/10537
[i915#10650]: https://gitlab.freedesktop.org/drm/intel/issues/10650
[i915#10656]: https://gitlab.freedesktop.org/drm/intel/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
[i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717
[i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9100]: https://gitlab.freedesktop.org/drm/intel/issues/9100
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766
[i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7804 -> IGTPW_10998
CI-20190529: 20190529
CI_DRM_14557: bf24d40fae19bcceac3e32c4866079b4f10c70f9 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10998: 10998
IGT_7804: 7804
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10998/index.html
[-- Attachment #2: Type: text/html, Size: 117293 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests reset domain aware
2024-04-10 9:40 [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests reset domain aware Tejas Upadhyay
` (3 preceding siblings ...)
2024-04-11 1:42 ` ✗ Fi.CI.IGT: " Patchwork
@ 2024-04-29 22:37 ` John Harrison
2024-05-08 17:25 ` Upadhyay, Tejas
4 siblings, 1 reply; 8+ messages in thread
From: John Harrison @ 2024-04-29 22:37 UTC (permalink / raw)
To: Tejas Upadhyay, igt-dev; +Cc: intel-xe, Matthew Brost, Lucas De Marchi
On 4/10/2024 02:40, Tejas Upadhyay wrote:
> RCS/CCS are dependent engines as they are sharing reset
> domain. Whenever there is reset from CCS, all the exec queues
> running on RCS are victimised mainly on Lunarlake.
>
> Lets skip parallel execution on CCS with RCS.
But why? In a real-world scenario, this should not happen.
As per earlier comments, before changing the test we need to understand
more about what is actually happening and why. The previous descriptions
of what is failing and on what platforms do not make sense.
Also, the request for more explanation was not just for the email
discussion but to actually add that description into the test. I even
explicitly asked for that in one of the review emails. The
xe_exec_threads executable reports 114 separate subtests, none of which
has any documentation at all. The comments within the code basically
come down to saying 'wait for completion' immediately before waiting.
At one point Matthew Brost stated:
> If the HANG flag is set, 1 of the exec queue per thread will insert a
> non-preemptable spinner. It is expected the GuC will reset this exec
> queue only. Cross CCS / RCS resets will break this as one of the
> 'good' exec queues from another thread could also be reset.
To which my replay was that if only one spinner is non-pre-emptible then
all the other spinners should get automatically switched out prior to
the reset being triggered and should therefore not be killed. The 'good'
queues should survive and be totally oblivious to the reset occurring.
So either the above description is inaccurate and all the spinners are
actually non-pre-emptible. In which case, if that is not the intention
of the test then the correct fix is to make them pre-emptible and it
should then pass. Or if the description is accurate, then the test is
correctly failing because it has found a bug which needs to be fixed.
Either way, the correct solution is not to simply skip the failing case
and hide it under the rug.
John.
>
> It helps in fixing following errors:
> 1. Test assertion failure function test_legacy_mode, file, Failed assertion: data[i].data == 0xc0ffee
>
> 2.Test assertion failure function xe_exec, file ../lib/xe/xe_ioctl.c, Failed assertion: __xe_exec(fd, exec) == 0, error: -125 != 0
>
> V3:
> - Check victimization reset domain wise irrespective of platform - Lucas/MattR
> V2:
> - Add error details
>
> Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
> ---
> tests/intel/xe_exec_threads.c | 43 ++++++++++++++++++++++++++++++++++-
> 1 file changed, 42 insertions(+), 1 deletion(-)
>
> diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
> index 8083980f9..24eac39de 100644
> --- a/tests/intel/xe_exec_threads.c
> +++ b/tests/intel/xe_exec_threads.c
> @@ -710,6 +710,24 @@ static void *thread(void *data)
> return NULL;
> }
>
> +static bool is_engine_contexts_victimized(__u16 eclass, unsigned int flags,
> + bool has_rcs, bool multi_ccs,
> + bool *ccs0_created)
> +{
> + if (!(eclass == DRM_XE_ENGINE_CLASS_COMPUTE && flags & HANG))
> + return false;
> + if (has_rcs) {
> + return true;
> + } else if (multi_ccs) {
> + /* In case of multi ccs, allow only 1 ccs to run HANG test*/
> + if (*ccs0_created)
> + return true;
> + *ccs0_created = true;
> + }
> +
> + return false;
> +}
> +
> /**
> * SUBTEST: threads-%s
> * Description: Run threads %arg[1] test with multi threads
> @@ -955,9 +973,20 @@ static void threads(int fd, int flags)
> bool go = false;
> int n_threads = 0;
> int gt;
> + bool has_rcs = false;
> + bool multi_ccs = false, has_ccs = false, ccs0_created = false;
>
> - xe_for_each_engine(fd, hwe)
> + xe_for_each_engine(fd, hwe) {
> + if (hwe->engine_class == DRM_XE_ENGINE_CLASS_RENDER) {
> + has_rcs = true;
> + } else if (hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE) {
> + if (has_ccs)
> + multi_ccs = true;
> + else
> + has_ccs = true;
> + }
> ++n_engines;
> + }
>
> if (flags & BALANCER) {
> xe_for_each_gt(fd, gt)
> @@ -990,6 +1019,18 @@ static void threads(int fd, int flags)
> }
>
> xe_for_each_engine(fd, hwe) {
> + /* RCS/CCS sharing reset domain hence dependent engines.
> + * When CCS is doing reset, all the contexts of RCS are
> + * victimized. Also in case of multiple CCS instances
> + * contexts running on other CCS engine are victimized.
> + * so skip the compute engine avoiding parallel execution
> + * with RCS and other CCS.
> + */
> + if (is_engine_contexts_victimized(hwe->engine_class, flags,
> + has_rcs, multi_ccs,
> + &ccs0_created))
> + continue;
> +
> threads_data[i].mutex = &mutex;
> threads_data[i].cond = &cond;
> #define ADDRESS_SHIFT 39
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests reset domain aware
2024-04-29 22:37 ` [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests reset domain aware John Harrison
@ 2024-05-08 17:25 ` Upadhyay, Tejas
2024-06-06 14:16 ` Upadhyay, Tejas
0 siblings, 1 reply; 8+ messages in thread
From: Upadhyay, Tejas @ 2024-05-08 17:25 UTC (permalink / raw)
To: Harrison, John C, igt-dev@lists.freedesktop.org, Brost, Matthew
Cc: intel-xe@lists.freedesktop.org, De Marchi, Lucas
> -----Original Message-----
> From: Harrison, John C <john.c.harrison@intel.com>
> Sent: Tuesday, April 30, 2024 4:08 AM
> To: Upadhyay, Tejas <tejas.upadhyay@intel.com>; igt-
> dev@lists.freedesktop.org
> Cc: intel-xe@lists.freedesktop.org; Brost, Matthew
> <matthew.brost@intel.com>; De Marchi, Lucas <lucas.demarchi@intel.com>
> Subject: Re: [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests reset
> domain aware
>
> On 4/10/2024 02:40, Tejas Upadhyay wrote:
> > RCS/CCS are dependent engines as they are sharing reset domain.
> > Whenever there is reset from CCS, all the exec queues running on RCS
> > are victimised mainly on Lunarlake.
> >
> > Lets skip parallel execution on CCS with RCS.
> But why? In a real-world scenario, this should not happen.
>
> As per earlier comments, before changing the test we need to understand
> more about what is actually happening and why. The previous descriptions of
> what is failing and on what platforms do not make sense.
>
> Also, the request for more explanation was not just for the email discussion
> but to actually add that description into the test. I even explicitly asked for
> that in one of the review emails. The xe_exec_threads executable reports 114
> separate subtests, none of which has any documentation at all. The
> comments within the code basically come down to saying 'wait for
> completion' immediately before waiting.
>
> At one point Matthew Brost stated:
> > If the HANG flag is set, 1 of the exec queue per thread will insert a > non-
> preemptable spinner. It is expected the GuC will reset this exec > queue only.
> Cross CCS / RCS resets will break this as one of the > 'good' exec queues from
> another thread could also be reset.
>
> To which my replay was that if only one spinner is non-pre-emptible then all
> the other spinners should get automatically switched out prior to the reset
> being triggered and should therefore not be killed. The 'good'
> queues should survive and be totally oblivious to the reset occurring.
As far as I am seeing test code, each spinner that is created is non-preemptible in this test. So all spinners will not get automatically switched out prior to reset and hence we will see test failure as 'good' queues will also not survive on reset. @Brost, Matthew please help to confirm behaviour. We need this to move further towards final solution.
Thanks,
Tejas
>
> So either the above description is inaccurate and all the spinners are actually
> non-pre-emptible. In which case, if that is not the intention of the test then
> the correct fix is to make them pre-emptible and it should then pass. Or if the
> description is accurate, then the test is correctly failing because it has found a
> bug which needs to be fixed.
> Either way, the correct solution is not to simply skip the failing case and hide it
> under the rug.
>
> John.
>
>
> >
> > It helps in fixing following errors:
> > 1. Test assertion failure function test_legacy_mode, file, Failed
> > assertion: data[i].data == 0xc0ffee
> >
> > 2.Test assertion failure function xe_exec, file ../lib/xe/xe_ioctl.c,
> > Failed assertion: __xe_exec(fd, exec) == 0, error: -125 != 0
> >
> > V3:
> > - Check victimization reset domain wise irrespective of platform -
> > Lucas/MattR
> > V2:
> > - Add error details
> >
> > Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
> > ---
> > tests/intel/xe_exec_threads.c | 43
> ++++++++++++++++++++++++++++++++++-
> > 1 file changed, 42 insertions(+), 1 deletion(-)
> >
> > diff --git a/tests/intel/xe_exec_threads.c
> > b/tests/intel/xe_exec_threads.c index 8083980f9..24eac39de 100644
> > --- a/tests/intel/xe_exec_threads.c
> > +++ b/tests/intel/xe_exec_threads.c
> > @@ -710,6 +710,24 @@ static void *thread(void *data)
> > return NULL;
> > }
> >
> > +static bool is_engine_contexts_victimized(__u16 eclass, unsigned int flags,
> > + bool has_rcs, bool multi_ccs,
> > + bool *ccs0_created)
> > +{
> > + if (!(eclass == DRM_XE_ENGINE_CLASS_COMPUTE && flags & HANG))
> > + return false;
> > + if (has_rcs) {
> > + return true;
> > + } else if (multi_ccs) {
> > + /* In case of multi ccs, allow only 1 ccs to run HANG test*/
> > + if (*ccs0_created)
> > + return true;
> > + *ccs0_created = true;
> > + }
> > +
> > + return false;
> > +}
> > +
> > /**
> > * SUBTEST: threads-%s
> > * Description: Run threads %arg[1] test with multi threads @@
> > -955,9 +973,20 @@ static void threads(int fd, int flags)
> > bool go = false;
> > int n_threads = 0;
> > int gt;
> > + bool has_rcs = false;
> > + bool multi_ccs = false, has_ccs = false, ccs0_created = false;
> >
> > - xe_for_each_engine(fd, hwe)
> > + xe_for_each_engine(fd, hwe) {
> > + if (hwe->engine_class == DRM_XE_ENGINE_CLASS_RENDER) {
> > + has_rcs = true;
> > + } else if (hwe->engine_class ==
> DRM_XE_ENGINE_CLASS_COMPUTE) {
> > + if (has_ccs)
> > + multi_ccs = true;
> > + else
> > + has_ccs = true;
> > + }
> > ++n_engines;
> > + }
> >
> > if (flags & BALANCER) {
> > xe_for_each_gt(fd, gt)
> > @@ -990,6 +1019,18 @@ static void threads(int fd, int flags)
> > }
> >
> > xe_for_each_engine(fd, hwe) {
> > + /* RCS/CCS sharing reset domain hence dependent engines.
> > + * When CCS is doing reset, all the contexts of RCS are
> > + * victimized. Also in case of multiple CCS instances
> > + * contexts running on other CCS engine are victimized.
> > + * so skip the compute engine avoiding parallel execution
> > + * with RCS and other CCS.
> > + */
> > + if (is_engine_contexts_victimized(hwe->engine_class, flags,
> > + has_rcs, multi_ccs,
> > + &ccs0_created))
> > + continue;
> > +
> > threads_data[i].mutex = &mutex;
> > threads_data[i].cond = &cond;
> > #define ADDRESS_SHIFT 39
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests reset domain aware
2024-05-08 17:25 ` Upadhyay, Tejas
@ 2024-06-06 14:16 ` Upadhyay, Tejas
0 siblings, 0 replies; 8+ messages in thread
From: Upadhyay, Tejas @ 2024-06-06 14:16 UTC (permalink / raw)
To: Upadhyay, Tejas, Harrison, John C, igt-dev@lists.freedesktop.org,
Brost, Matthew, Summers, Stuart
Cc: intel-xe@lists.freedesktop.org, De Marchi, Lucas
> -----Original Message-----
> From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of
> Upadhyay, Tejas
> Sent: Wednesday, May 8, 2024 10:55 PM
> To: Harrison, John C <john.c.harrison@intel.com>; igt-
> dev@lists.freedesktop.org; Brost, Matthew <matthew.brost@intel.com>
> Cc: intel-xe@lists.freedesktop.org; De Marchi, Lucas
> <lucas.demarchi@intel.com>
> Subject: RE: [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests reset
> domain aware
>
>
>
> > -----Original Message-----
> > From: Harrison, John C <john.c.harrison@intel.com>
> > Sent: Tuesday, April 30, 2024 4:08 AM
> > To: Upadhyay, Tejas <tejas.upadhyay@intel.com>; igt-
> > dev@lists.freedesktop.org
> > Cc: intel-xe@lists.freedesktop.org; Brost, Matthew
> > <matthew.brost@intel.com>; De Marchi, Lucas <lucas.demarchi@intel.com>
> > Subject: Re: [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests
> > reset domain aware
> >
> > On 4/10/2024 02:40, Tejas Upadhyay wrote:
> > > RCS/CCS are dependent engines as they are sharing reset domain.
> > > Whenever there is reset from CCS, all the exec queues running on RCS
> > > are victimised mainly on Lunarlake.
> > >
> > > Lets skip parallel execution on CCS with RCS.
> > But why? In a real-world scenario, this should not happen.
> >
> > As per earlier comments, before changing the test we need to
> > understand more about what is actually happening and why. The previous
> > descriptions of what is failing and on what platforms do not make sense.
> >
> > Also, the request for more explanation was not just for the email
> > discussion but to actually add that description into the test. I even
> > explicitly asked for that in one of the review emails. The
> > xe_exec_threads executable reports 114 separate subtests, none of
> > which has any documentation at all. The comments within the code
> > basically come down to saying 'wait for completion' immediately before
> waiting.
> >
> > At one point Matthew Brost stated:
> > > If the HANG flag is set, 1 of the exec queue per thread will insert
> > a > non- preemptable spinner. It is expected the GuC will reset this exec >
> queue only.
> > Cross CCS / RCS resets will break this as one of the > 'good' exec
> > queues from another thread could also be reset.
> >
> > To which my replay was that if only one spinner is non-pre-emptible
> > then all the other spinners should get automatically switched out
> > prior to the reset being triggered and should therefore not be killed. The
> 'good'
> > queues should survive and be totally oblivious to the reset occurring.
>
> As far as I am seeing test code, each spinner that is created is non-
> preemptible in this test. So all spinners will not get automatically switched out
> prior to reset and hence we will see test failure as 'good' queues will also not
> survive on reset. @Brost, Matthew please help to confirm behaviour. We
> need this to move further towards final solution.
Any update here please? @Summers, Stuart FYI
Thanks,
Tejas
>
> Thanks,
> Tejas
> >
> > So either the above description is inaccurate and all the spinners are
> > actually non-pre-emptible. In which case, if that is not the intention
> > of the test then the correct fix is to make them pre-emptible and it
> > should then pass. Or if the description is accurate, then the test is
> > correctly failing because it has found a bug which needs to be fixed.
> > Either way, the correct solution is not to simply skip the failing
> > case and hide it under the rug.
> >
> > John.
> >
> >
> > >
> > > It helps in fixing following errors:
> > > 1. Test assertion failure function test_legacy_mode, file, Failed
> > > assertion: data[i].data == 0xc0ffee
> > >
> > > 2.Test assertion failure function xe_exec, file
> > > ../lib/xe/xe_ioctl.c, Failed assertion: __xe_exec(fd, exec) == 0,
> > > error: -125 != 0
> > >
> > > V3:
> > > - Check victimization reset domain wise irrespective of platform
> > > - Lucas/MattR
> > > V2:
> > > - Add error details
> > >
> > > Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
> > > ---
> > > tests/intel/xe_exec_threads.c | 43
> > ++++++++++++++++++++++++++++++++++-
> > > 1 file changed, 42 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/tests/intel/xe_exec_threads.c
> > > b/tests/intel/xe_exec_threads.c index 8083980f9..24eac39de 100644
> > > --- a/tests/intel/xe_exec_threads.c
> > > +++ b/tests/intel/xe_exec_threads.c
> > > @@ -710,6 +710,24 @@ static void *thread(void *data)
> > > return NULL;
> > > }
> > >
> > > +static bool is_engine_contexts_victimized(__u16 eclass, unsigned int
> flags,
> > > + bool has_rcs, bool multi_ccs,
> > > + bool *ccs0_created)
> > > +{
> > > + if (!(eclass == DRM_XE_ENGINE_CLASS_COMPUTE && flags & HANG))
> > > + return false;
> > > + if (has_rcs) {
> > > + return true;
> > > + } else if (multi_ccs) {
> > > + /* In case of multi ccs, allow only 1 ccs to run HANG test*/
> > > + if (*ccs0_created)
> > > + return true;
> > > + *ccs0_created = true;
> > > + }
> > > +
> > > + return false;
> > > +}
> > > +
> > > /**
> > > * SUBTEST: threads-%s
> > > * Description: Run threads %arg[1] test with multi threads @@
> > > -955,9 +973,20 @@ static void threads(int fd, int flags)
> > > bool go = false;
> > > int n_threads = 0;
> > > int gt;
> > > + bool has_rcs = false;
> > > + bool multi_ccs = false, has_ccs = false, ccs0_created = false;
> > >
> > > - xe_for_each_engine(fd, hwe)
> > > + xe_for_each_engine(fd, hwe) {
> > > + if (hwe->engine_class == DRM_XE_ENGINE_CLASS_RENDER) {
> > > + has_rcs = true;
> > > + } else if (hwe->engine_class ==
> > DRM_XE_ENGINE_CLASS_COMPUTE) {
> > > + if (has_ccs)
> > > + multi_ccs = true;
> > > + else
> > > + has_ccs = true;
> > > + }
> > > ++n_engines;
> > > + }
> > >
> > > if (flags & BALANCER) {
> > > xe_for_each_gt(fd, gt)
> > > @@ -990,6 +1019,18 @@ static void threads(int fd, int flags)
> > > }
> > >
> > > xe_for_each_engine(fd, hwe) {
> > > + /* RCS/CCS sharing reset domain hence dependent engines.
> > > + * When CCS is doing reset, all the contexts of RCS are
> > > + * victimized. Also in case of multiple CCS instances
> > > + * contexts running on other CCS engine are victimized.
> > > + * so skip the compute engine avoiding parallel execution
> > > + * with RCS and other CCS.
> > > + */
> > > + if (is_engine_contexts_victimized(hwe->engine_class, flags,
> > > + has_rcs, multi_ccs,
> > > + &ccs0_created))
> > > + continue;
> > > +
> > > threads_data[i].mutex = &mutex;
> > > threads_data[i].cond = &cond;
> > > #define ADDRESS_SHIFT 39
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-06-06 14:16 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-10 9:40 [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests reset domain aware Tejas Upadhyay
2024-04-10 16:45 ` ✓ CI.xeBAT: success for tests/xe_exec_threads: Make hang tests reset domain aware (rev2) Patchwork
2024-04-10 16:55 ` ✓ Fi.CI.BAT: " Patchwork
2024-04-11 0:05 ` ✗ CI.xeFULL: failure " Patchwork
2024-04-11 1:42 ` ✗ Fi.CI.IGT: " Patchwork
2024-04-29 22:37 ` [PATCH V3 i-g-t] tests/xe_exec_threads: Make hang tests reset domain aware John Harrison
2024-05-08 17:25 ` Upadhyay, Tejas
2024-06-06 14:16 ` Upadhyay, Tejas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox